summaryrefslogtreecommitdiffstats
path: root/vimrc
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2017-10-18 04:19:34 -0400
committerJesse Luehrs <doy@tozt.net>2017-10-18 05:51:02 -0400
commit23993570e56b1f2b356b8905649f82f8947aac2d (patch)
treef3a9e8aba8ced51c1a96b6be4d30e94ab5bf7ba8 /vimrc
parent58132b6f46f617750b74c618a026aded2daa63c0 (diff)
downloadconf-23993570e56b1f2b356b8905649f82f8947aac2d.tar.gz
conf-23993570e56b1f2b356b8905649f82f8947aac2d.zip
fix list of buffer names to ignore
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index eef3d37..8d5fbb3 100644
--- a/vimrc
+++ b/vimrc
@@ -356,7 +356,7 @@ if $SHELL =~ 'zsh' && exists('g:_zsh_hist_fname')
let to_append = expand("%:~:.")
" XXX these set buftype too late to be caught by this...
" this is broken, but not sure what a better fix is
- if &buftype == '' && to_append !~ '^\(__Gundo\|vimfiler:\|Startify\|\[calendar\]\)'
+ if &buftype == '' && to_append !~ '^\(__Gundo\|Startify\|\[denite\]\)'
if !has_key(s:initial_files, to_append)
if filereadable(g:_zsh_hist_fname)
let hist = readfile(g:_zsh_hist_fname)