kakoune/rc/base/spell.kak
Maxime Coste fef0277998 Reorganise rc/ into subdirectories
* core: set of tools to work on kakoune source code
 * base: very common languages and tools
 * extra: less common languages and tools
2016-01-29 09:03:23 +00:00

46 lines
1.8 KiB
Plaintext

decl -hidden range-faces spell_regions
decl -hidden str spell_tmp_file
def -params ..1 spell -docstring "Check spelling of the current buffer with aspell (the first optional argument is the language against which the check will be performed)" %{
try %{ addhl ranges 'spell_regions' }
%sh{
file=$(mktemp -d -t kak-spell.XXXXXXXX)/buffer
echo "write ${file}"
echo "set buffer spell_tmp_file ${file}"
}
%sh{
if [ $# -ge 1 ]; then
if [ ${#1} -ne 2 -a ${#1} -ne 5 ]; then
echo "echo -color Error Invalid language code (examples of expected format: en, en_US, en-US)"
rm -r $(dirname $kak_opt_spell_tmp_file)
exit 1
else
options="-l $1"
fi
fi
sed -i 's/^/^/' $kak_opt_spell_tmp_file
aspell -a $options < $kak_opt_spell_tmp_file 2>&1 | {
line_num=1
regions=$kak_timestamp
while read line; do
case $line in
\&*)
begin=$(printf %s "$line" | cut -d ' ' -f 4 | sed 's/:$//')
;&
'#'*)
word=$(printf %s "$line" | cut -d ' ' -f 2)
begin=${begin:-$(printf %s "$line" | cut -d ' ' -f 3)}
end=$((begin + ${#word}))
# echo "echo -debug -- line: $line_num, word: $word, begin: $begin, end: $end"
regions="$regions:$line_num.$begin,$line_num.$end|Error"
;;
'') ((++line_num)) ;;
*) ;;
esac
done
echo "set buffer spell_regions %{$regions}"
}
rm -r $(dirname $kak_opt_spell_tmp_file)
}
}