[nvim] setlocal nospell on terminal buffer

Close #469. `setlocal nospell` should appear before `setf fzf` to allow
customization of the option.
This commit is contained in:
Junegunn Choi 2016-01-09 12:08:25 +09:00
parent 2a2c0a0957
commit 6e08fe337c

View File

@ -353,6 +353,7 @@ function! s:execute_term(dict, command, temps)
endfunction endfunction
call termopen(a:command, fzf) call termopen(a:command, fzf)
setlocal nospell
setf fzf setf fzf
startinsert startinsert
return [] return []