summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2016-01-09 12:08:25 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2016-01-09 12:08:25 +0900
commit6e08fe337cf90cd6eb4734000fe6da1d37184014 (patch)
treeea16231deb1538ea3d42898d35665e45c3f0a531
parent2a2c0a0957b9142a9574b8c34931c615f4ab647f (diff)
[nvim] setlocal nospell on terminal buffer
Close #469. `setlocal nospell` should appear before `setf fzf` to allow customization of the option.
-rw-r--r--plugin/fzf.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugin/fzf.vim b/plugin/fzf.vim
index a391e331..89f1b21e 100644
--- a/plugin/fzf.vim
+++ b/plugin/fzf.vim
@@ -353,6 +353,7 @@ function! s:execute_term(dict, command, temps)
endfunction
call termopen(a:command, fzf)
+ setlocal nospell
setf fzf
startinsert
return []