ec16969609
Automatic reparsing of %sh{...}, while convenient in many cases, can be surprising as well, and can lead to security problems: 'echo %sh{ printf "foo\necho bar" }' runs 'echo foo', then 'echo bar'. we make this danger explicit, and we fix the 'nop %sh{...}' pattern. To reparse %sh{...} strings, they can be passed to evaluate-commands, which has been fixed to work in every cases where %sh{...} reparsing was used..
50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
def -params 1 -docstring "colorscheme <name>: enable named colorscheme" \
|
|
-shell-candidates %{
|
|
find -L "${kak_runtime}/colors" "${kak_config}/colors" -type f -name '*\.kak' \
|
|
| while read -r filename; do
|
|
basename="${filename##*/}"
|
|
printf %s\\n "${basename%.*}"
|
|
done | sort -u
|
|
} \
|
|
colorscheme %{ evaluate-commands %sh{
|
|
find_colorscheme() {
|
|
find -L "${1}" -type f -name "${2}".kak | head -n 1
|
|
}
|
|
|
|
if [ -d "${kak_config}/colors" ]; then
|
|
filename=$(find_colorscheme "${kak_config}/colors" "${1}")
|
|
fi
|
|
if [ -z "${filename}" ]; then
|
|
filename=$(find_colorscheme "${kak_runtime}/colors" "${1}")
|
|
fi
|
|
|
|
if [ -n "${filename}" ]; then
|
|
printf 'source %%{%s}' "${filename}"
|
|
else
|
|
echo "echo -markup '{Error}No such colorscheme'"
|
|
fi
|
|
}}
|
|
|
|
evaluate-commands %sh{
|
|
autoload_directory() {
|
|
find -L "$1" -type f -name '*\.kak' \
|
|
-exec printf 'try %%{ source "%s" } catch %%{ echo -debug Autoload: could not load "%s" }\n' '{}' '{}' \;
|
|
}
|
|
|
|
echo "colorscheme default"
|
|
|
|
if [ -d "${kak_config}/autoload" ]; then
|
|
autoload_directory ${kak_config}/autoload
|
|
elif [ -d "${kak_runtime}/autoload" ]; then
|
|
autoload_directory ${kak_runtime}/autoload
|
|
fi
|
|
|
|
if [ -f "${kak_runtime}/kakrc.local" ]; then
|
|
echo "source '${kak_runtime}/kakrc.local'"
|
|
fi
|
|
|
|
if [ -f "${kak_config}/kakrc" ]; then
|
|
echo "source '${kak_config}/kakrc'"
|
|
fi
|
|
}
|