summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-12-24 22:04:17 +0000
committerMaxime Coste <frrrwww@gmail.com>2015-12-24 22:04:17 +0000
commitdca9e2b73d60f522dacf660dd77533296c235023 (patch)
tree55f1dc820c70132654a8305c50da14a30e93b91c
parenta0512502049eca3f0351029db537f8b0b5e801c1 (diff)
Fix spell.kak wrong use of sed flags
-rw-r--r--rc/spell.kak2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc/spell.kak b/rc/spell.kak
index 52dd20ee..5d750a88 100644
--- a/rc/spell.kak
+++ b/rc/spell.kak
@@ -9,7 +9,7 @@ def spell %{
echo "set buffer spell_tmp_file ${file}"
}
%sh{
- sed -ie 's/^/^/' $kak_opt_spell_tmp_file
+ sed -i 's/^/^/' $kak_opt_spell_tmp_file
aspell -a < $kak_opt_spell_tmp_file 2>&1 | {
line_num=1
regions=$kak_timestamp