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

Update sorcerer colorscheme, added autoclose feature for taglisttoo plugin

This commit is contained in:
2011-11-19 09:49:27 +01:00
parent ff5f855282
commit 13493ad859
3 changed files with 42 additions and 22 deletions

View File

@@ -37,6 +37,8 @@
" Global Variables {{{
let g:TagListToo = 1
"gryf: add autoclose functionality
let g:TagListTooAutoClose = 1
" }}}
" Script Variables {{{
@@ -948,6 +950,10 @@ endfunction " }}}
function! s:JumpToTag() " {{{
let tag_info = s:GetTagInfo()
if !len(tag_info)
"gryf: autoclose feature
if g:TagListTooAutoClose
call taglisttoo#taglist#Taglist()
endif
return
endif
@@ -1007,6 +1013,10 @@ function! s:JumpToTag() " {{{
call s:ShowCurrentTag()
endif
endif
"gryf: autoclose feature
if g:TagListTooAutoClose
call taglisttoo#taglist#Taglist()
endif
endfunction " }}}
function! s:Window(settings, tags) " {{{