mirror of
https://github.com/mawww/kakoune.git
synced 2024-11-23 15:23:29 +03:00
rc lint: Check the lintcmd
option is set in :lint-buffer
Calling `:lint-buffer` when `lintcmd` is empty results in a temporary directory being created, but never removed when the underlying linting code errors out.
This commit is contained in:
parent
8f30e37507
commit
7d987c013e
@ -277,6 +277,12 @@ define-command \
|
||||
} \
|
||||
lint-buffer \
|
||||
%{
|
||||
evaluate-commands %sh{
|
||||
if [ -z "${kak_opt_lintcmd}" ]; then
|
||||
echo 'fail The lintcmd option is not set'
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
evaluate-commands -draft %{
|
||||
execute-keys '%'
|
||||
lint-cleaned-selections %opt{lintcmd}
|
||||
|
Loading…
Reference in New Issue
Block a user