Last active
December 11, 2022 12:35
-
-
Save sgur/5711308 to your computer and use it in GitHub Desktop.
Delphi 用 .ctags
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let g:tagbar_type_pascal = { | |
\ 'ctagstype' : 'delphi', | |
\ 'kinds' : [ | |
\ 't:Type', | |
\ 'c:Class', | |
\ 'n:Constructor', | |
\ 'd:Destructor', | |
\ 'm:Method', | |
\ 'f:Function', | |
\ 'p:Procedure', | |
\ 's:Section', | |
\ ], | |
\ } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you so much for this tip! I was wondering why the tagbar plugin did not generated the tags for my Free Pascal projects.