2 likes
·
92 reads
3 comments
·Aug 25, 2024
Aug 25, 2024
Alternatively you can use "ripgrep" to manage all these process. rg --files
Other alternative is fd
command.
Good job. keep going!
1
·
·2 replies
Author
·Aug 27, 2024
Yeah rg --files
is great and even faster. This one is more about navigating to files in a fuzzy manner using builtin vim features. vim's :find
command find and open the file in vim all in one go :)
·
·Aug 28, 2024
Aug 28, 2024
Bhanuka Mallawaarachchi then maybe you can also add the map assignment to your command. For example i am using :
--INFO: select all
["<C-a>"] = { "<Esc>gg<S-v>G<CR>", desc = "Select All" },
to select all in normal mode in AstroNvim. This kind of assignments also can be useful for your command usages.
·