From 6e08fe337cf90cd6eb4734000fe6da1d37184014 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sat, 9 Jan 2016 12:08:25 +0900 Subject: [PATCH] [nvim] setlocal nospell on terminal buffer Close #469. `setlocal nospell` should appear before `setf fzf` to allow customization of the option. --- plugin/fzf.vim | 1 + 1 file changed, 1 insertion(+) 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 []