You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary:
When using telescope-file-browser.nvim, the directory does not persist between sessions. For example, if I open Neovim in $HOME and navigate to ~/Downloads, the next time I open the file browser, it defaults back to $HOME instead of the previously navigated directory (~/Downloads).
Steps to Reproduce:
Open Neovim in the $HOME directory.
Use telescope-file-browser.nvim to navigate to ~/Downloads.
Close the file browser.
Reopen the file browser.
Expected Behavior:
The file browser should open in the last navigated directory (~/Downloads) instead of the initial directory ($HOME).
Actual Behavior:
The file browser reopens in the initial directory ($HOME) instead of the last navigated directory (~/Downloads).
I'm using the default settings provided in the README, I'm sorry if this option is already provided and I just coulnd't find it out
The text was updated successfully, but these errors were encountered:
I found out that I can change the cwd with fb_actions.change_cwd and I'm trying to implement a workaround so that when I exit the file browser with esc the new directory is set automatically, but the workarount doesn't work yet (the way I want)...
This seems to be a behaviour specific to individuals. I'm assuming you open nvim from HOME directory. So the file_browser will open where the current directory `cwd' is.
I'm saying specific, because some might want to open file_browser from the HOME directory/the directory where they are currently in :pwd. However, some might want it to be the last visited directory. I would suggest this be option based with an option something like open_prev_path = true
Bug Report / Feature Request
Summary:
When using
telescope-file-browser.nvim
, the directory does not persist between sessions. For example, if I open Neovim in$HOME
and navigate to~/Downloads
, the next time I open the file browser, it defaults back to$HOME
instead of the previously navigated directory (~/Downloads
).Steps to Reproduce:
$HOME
directory.telescope-file-browser.nvim
to navigate to~/Downloads
.Expected Behavior:
The file browser should open in the last navigated directory (
~/Downloads
) instead of the initial directory ($HOME
).Actual Behavior:
The file browser reopens in the initial directory (
$HOME
) instead of the last navigated directory (~/Downloads
).I'm using the default settings provided in the README, I'm sorry if this option is already provided and I just coulnd't find it out
The text was updated successfully, but these errors were encountered: