-
I use ]g [g mappings to jump between hunks. I would like to use similar mappings to jump back and forth between modified git files in neo-tree. I found that nvim-tree has something like this. How can I achieve similar functionality in neo-tree? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Personally, I use the default neo-nav.mov |
Beta Was this translation helpful? Give feedback.
-
A custom command can be added to do this. The key is that the If you want to open an issue for this, I will create these commands when I have some time. |
Beta Was this translation helpful? Give feedback.
A custom command can be added to do this. The key is that the
state
object that is passed to all commands has agit_status_lookup
table that you can use to find the "next" file with some git status entry and then focus it. There' enough info scattered around the wiki and these discussions to piece that together.If you want to open an issue for this, I will create these commands when I have some time.