Guest User

Untitled

a guest
Feb 11th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.51 KB | None | 0 0
  1. " Taglist variables
  2. " Display function name in status bar:
  3. let g:ctags_statusline=1
  4. " Automatically start script
  5. let generate_tags=1
  6. " Displays taglist results in a vertical window:
  7. let Tlist_Use_Horiz_Window=0
  8. " Shorter commands to toggle Taglist display
  9. nnoremap TT :TlistToggle<CR>
  10. map <F4> :TlistToggle<CR>
  11. " Various Taglist diplay config:
  12. let Tlist_Use_Right_Window = 1
  13. let Tlist_Compact_Format = 1
  14. let Tlist_Exit_OnlyWindow = 1
  15. let Tlist_GainFocus_On_ToggleOpen = 1
  16. let Tlist_File_Fold_Auto_Close = 1
Add Comment
Please, Sign In to add comment