Dumb-jump: an Emacs “jump to definition” package
1–10 of 53 posts
Re: Dumb-jump: an Emacs “jump to definition” package
#2Re: Dumb-jump: an Emacs “jump to definition” package
#3Why does dumb-jump-go want me to save my files before jumping?
Re: Dumb-jump: an Emacs “jump to definition” package
#4Still learning VIM user here, do we have something like this?
Re: Dumb-jump: an Emacs “jump to definition” package
#5Nice! Just tried it out and it seems to work well. Why does dumb-jump-go want me to save my files before jumping?
Re: Dumb-jump: an Emacs “jump to definition” package
#6Re: Dumb-jump: an Emacs “jump to definition” package
#7Re: Dumb-jump: an Emacs “jump to definition” package
#8Nice package! Unfortunately is completely falling on its face for my ruby on rails project, but I'm sure it can be improved.
Re: Dumb-jump: an Emacs “jump to definition” package
#9Still learning VIM user here, do we have something like this?
Plugin 'majutsushi/tagbar'
Plugin 'xolox/vim-easytags'
Plugin 'xolox/vim-misc'
Later on I have: nnoremap b :TagbarToggle
I may have also separately installed ctags, but I don't remember.Now you can have an outline of the file you're working on in a small pane to the right. You can use this to navigate or see what arguments a function needs (or what attributes a class has). Whenever you save, ctags are automatically generated so you never have to worry about setting that up. ctrl+] will bring directly to the definition, including if it is in another file entirely. Use ctrl+T to go back to where you came. More often than not, I use this not because I forgot what the code says, but because I made an alteration to how I wanted a function or class to behave and I need to go back and change a line or two.
Re: Dumb-jump: an Emacs “jump to definition” package
#10Still learning VIM user here, do we have something like this?