1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 11:30:29 +01:00

Small fix for annoying interfering taglisttoo window with opening file via FufFile

This commit is contained in:
2010-05-04 20:16:09 +02:00
parent 598bdab32c
commit ea245563e7
2 changed files with 8 additions and 3 deletions

View File

@@ -92,7 +92,12 @@ endif
" Command Declarations {{{
if !exists(":Tlist") && !exists(":TlistToo")
command TlistToo :call s:Taglist()
"command TlistToo :call s:Taglist()
"I want to have possibility to explicit close the taglist by passing bang to
"the command. gryf
command! -bang -nargs=? TlistToo :call s:Taglist(<bang>-1)
"And also have a command for explicit close
command! TlistTooOpen :call s:Taglist(1)
endif
" }}}