James Trew
James Trew
> > just add it to your defaults like this: > > Tried already. Doesn't work. Seems like this is a [known bug](https://github.com/nvim-telescope/telescope.nvim/issues/2712) though. I just fixed `path_display` for `git_status`...
I think this is due to snap's confinement capabilities. I don't have a ubuntu machine myself but can someone with ubuntu and `rg` installed via snap try this and share...
I don't remember how I heard of it. It was just in passing or something. I haven't really looked into much since either. > Is this confinement dynamic (which could...
Had to revert the commit which closed this issue due to some performance issues so I'm reopening this.
> I want to point out that [there are default mappings of telescope](https://github.com/nvim-telescope/telescope.nvim#default-mappings). I think, the default mappings of any telescope extension should not override any of the telescope default...
I don't think `hijack_netrw` is an adequate option for `find_files`. Mix of technical and "philosophical". If all you want is to have `find_files` open every time you launch neovim, aliasing...
If you use [telescope-file-browser](https://github.com/nvim-telescope/telescope-file-browser.nvim/) you can also use an custom action like below from within a directory to `live_grep`/`find_files` for things only in that directory. ```lua local Path = require("plenary.path")...
@thallada not exactly what you're asking for but you can `` to refine the search with fuzzy matching from within the live_grep picker
I'm also having this issue with lua files with a large number of comments (anything more than ~300 lines of comments). - The issue is strictly related to high comment...
> ```lua >[""] = fb_actions.goto_parent_dir, >[""] = fb_actions.toggle_hidden, > ``` `` and `` are equivalent to vim/nvim so the second `ctrl` + `h` is overwriting your first action. I think...