I noticed that project-nvim is https://github.com/practicalli/astro/blob/3bac85d8d2b4393a5485b0d1fb45767e70577dd9/lua/community.lua#L74 in place of just https://practical.li/neovim/neovim-basics/navigation/#search-in-buffer :cd. Is that right?
When I do a <SPC> f p I get the following:
If I run :Telescope, I don't see any projects in there.
I see <SPC> f p defined in user-practicalli.lua
Good catch. I will comment the extra key mapping for project.
AstroNvim core plugin includes a plugin that switches root automatically, so project feels superfluous. Although if there is feedback that project plugin is useful, I can add it back to the config
Often I see an ephemeral red 'toast' notification in the bottom right. How can I see these after they disappear? They don't show up in :messages.
example:
Found it! <SPC> f n.
I have increased the message popup time so messages do show for 2 seconds rather than 3
The level key in nvim-notify controls how many different types of message are shown. The default level 5 shows every type, so I made it bit quieter using level 3.
Using SPC f n shows the history and selecting a message allows it to be yanked
Is there anything that's like the equivalent of spacemac's <SPC> r l which opens up the most recent quicklist? Like, if I do <SPC> f w to search for stuff and want to go back to the list after selecting an entry.
found it! <SPC> f <CR>
Holy crap, I've been looking for this for ages, thank you!
This isn't something I have used yet, so thanks for the tip. Lots of useful things to add to the docs, thanks for the questions.