I am a C++ dev. I am now able to follow up symbols or files using LSP,/projectile/ivy/transient aso… but inside one file, I have difficulties going quickly up function by function, or by if/for statement. Do you know a convenient way to do this ? I am interested in any navigation tips as well ! Thanks for your help !
You can go to the next/previous function with C-M-a and C-M-e. With evil mode it's ] m and [ m. You can use imenu. You can make keybindings to scroll forwards/backwards several lines at a time.
That one is great !!! What if I want to navigate through statements of the same type ? Like if instructions?
I don't know any good way to do that.
See my reply above. You can use either
thing-cmd.el
orfind-where.el
for that. You just need to define "statements of a given type" as a THING or define a predicate that is true for them. Or if their text has some property (even justface
from font-locking) thenisearch-prop.el
will help.Feels like this would be something cool to add to a treesitter mode.
Meanwhile I just C-s if
I'm not sure what that means, but
forward-sexp
,backward-sexp
, andbackward-up-list
are good for navigating across and within balanced expressions.