Last active
September 22, 2022 00:49
-
-
Save Evizero/e1595c35611c15ebf8f9 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' : ['a:abstract', 'i:immutable', 't:type', 'f:function', 'm:macro'] | |
\ } |
Hi, can you get this working if the module is prepended? (like mymodule.myfunction())
I don't know if it's my emacs setup wrong
However, thanks for this :)
I updated this a little bit for Julia 0.6: https://gist.github.com/goerz/4235572a3bc6adfaead06dc8b3c1826f
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this!