-
-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Being able jump back/forth between the directories like vim-jump. #151
Comments
Unrelated comment: |
require("telescope").setup {
extensions = {
file_browser = {
hidden = true
},
},
} |
Side comment: most terminal emulators interpret C-i as tab for historical reasons. Just try it in insert mode -- chances are it produces a tab.
We really shouldn't hook into jumplist here -- more complex and interferes with neovim otherwise. But I guess that's not necessarily what you meant.
This already exists and is mapped by default to C-g in insert mode and g in normal mode. You can access the action via
The request feature should be relatively simple to implement. Would you be happy to take a crack at this? |
@fdschmidt93 Not so well-versed with lua. I'll update this thread probably in the next 2 weeks if I did work on it. |
No harm in keeping this open. Mid July I should have more time again and it should be relatively straightforward for me to do. |
I just want the directory i came from to be selected and not |
Related, but not quite the same. What you are looking for is being worked on though. Relevant PR: #193 Original comment in issue: #104 (comment) |
Sorry for unrelated bump but this didn't help me. And Telescope, Oil.nvim and netrw see such folders without problems. |
@iHeadway try |
@fdschmidt93 I'd like to take a stab at this. I have no Lua experience, but if you give me a rough idea, I could create a prototype that I can test locally. |
Is your feature request related to a problem? Please describe.
User should be able to hop back and forth between the directories similar to how the vim-jumps work. Just replacing the jump-marks with directory paths.
Describe the solution you'd like
I think it'd be intuitive to press <C-o> to hop to a parent directory, <C-i> to hop into the directory you came from.
Just imagine vim-jumps but jumping directories.
The text was updated successfully, but these errors were encountered: