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:
@@ -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) " {{{
|
||||
|
||||
Reference in New Issue
Block a user