comfy-live-grep README
This is somewhat a replica of the telescope plugin for neovim
Features
for right now the only feature is the fuzzy finder u can run it by doing cmd+shift+p and type grep-files
For users who use the vim-mode on VSCode and want to get the same feel as the telescope on Neovim:
- cmd+shift+p, search
Preferences: Open User Settings (JSON) , and add the line:
{
"vim.leader": "<space>"
}
- cmd+shift+p, search
Preferences: Open Application Settings (JSON) , and add the lines:
{
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "f", "f"],
"commands": ["comfy-live-grep.grep-files"]
}
]
}
Enjoy!
| |