Avoid stderr message from cut when completing colorschemes
This commit is contained in:
parent
a2d426abba
commit
55d381999e
|
@ -7,7 +7,7 @@ def -params 1.. runtime %{ %sh{
|
|||
|
||||
def -params 1 -docstring "colorscheme <name>: enable named colorscheme" \
|
||||
-shell-completion %{
|
||||
prefix=$(printf %s "$1" | cut -c-${kak_pos_in_token})
|
||||
prefix=$(printf %s "$1" | cut -c1-${kak_pos_in_token} 2> /dev/null)
|
||||
(
|
||||
localconfdir=${XDG_CONFIG_HOME:-${HOME}/.config}/kak
|
||||
for col in ${kak_runtime}/colors/*.kak ${localconfdir}/colors/*.kak; do
|
||||
|
|
Loading…
Reference in New Issue
Block a user