From 654a7df9b080533977d34ad423e201f063843d5c Mon Sep 17 00:00:00 2001 From: Junegunn Choi <junegunn.c@gmail.com> Date: Sat, 23 Apr 2016 17:53:54 +0900 Subject: [PATCH] [neovim] Set bufhidden and nobuflisted after opening terminal --- plugin/fzf.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/fzf.vim b/plugin/fzf.vim index a01e582b..43d5059a 100644 --- a/plugin/fzf.vim +++ b/plugin/fzf.vim @@ -317,7 +317,7 @@ function! s:split(dict) endif return { '&l:wfw': &l:wfw, '&l:wfh': &l:wfh } finally - setlocal winfixwidth winfixheight buftype=nofile bufhidden=wipe nobuflisted + setlocal winfixwidth winfixheight endtry endfunction @@ -368,7 +368,7 @@ function! s:execute_term(dict, command, temps) abort call s:pushd(a:dict) call termopen(a:command, fzf) call s:popd(a:dict, []) - setlocal nospell + setlocal nospell bufhidden=wipe nobuflisted setf fzf startinsert return [] -- GitLab