-
-
Save goerz/4235572a3bc6adfaead06dc8b3c1826f to your computer and use it in GitHub Desktop.
more comprehensive ctags definitions for the julia language based on the one in the official julia repository (inclusive vim tagbar)
This file contains 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_julia = { | |
\ 'ctagstype' : 'julia', | |
\ 'kinds' : [ | |
\ 't:struct', 'f:function', 'm:macro', 'c:const'] | |
\ } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note that these rules are specifically for use with the tagbar plugin.
They are not suitable for running
ctags
manually, as e.g. function arguments are included in the tag name. This works well for tagbar, but it doesn't allow you to jump to tags withctrl+]