Questions tagged [telescope.nvim]
22 questions
0
votes
1 answer
Using Telescope fuzzy finder to find files in nested git repositories
I am working on an embedded C project using neovim that pulls in git repositories as part of the project structure. The fuzzy finder functionality of telescope seems to not like to enter any folders that happen to be standalone git repositories. Is…

Patrick Gordon
- 3
- 1
0
votes
0 answers
error when calling lua custom search function in telescope
I have telescope installed and functioning correctly. But when calling a custom telescope builtin I get the error:
E5108: Error executing lua [string ":lua"]:1: attempt to index a boolean value
stack…

Boyd
- 351
- 4
- 14
0
votes
1 answer
How to get prompt value in telescope.vim?
When using the live_grep picker in telescope, I would like to be able to map a key to open the current search terms in CtrlSF so I can do a mass search and replace.
How can I pass the search terms to another function?

synic
- 26,359
- 20
- 111
- 149
0
votes
1 answer
How can I use Telescope.nvim to complete a path in insert mode?
Fzf.vim implements a fuzzy finder in insert mode, extending the native ins-completion functionality.
For example: in insert mode, we can map to enable Fzf.vim to fuzzy find and insert file names with relative paths (fzf-complete-path).…

Gustavo Basso
- 129
- 11
0
votes
1 answer
Neovim and telescope:find files with two strings
I am using telescope with Neovim to find files quickly. However, when I try to input two search strings seperate by space, telescope does not list any files. How can I search for files with two individual substrings in their path?

Cactus
- 864
- 1
- 17
- 44
0
votes
0 answers
Configure different file_ignore_patterns in telescope
I have a file (NAMESPACE), that I want to ignore during live_grep, but I want to show it with the file browser. Currently I have the following in my lua.init.
require("telescope").setup{defaults = { file_ignore_patterns= {"**NAMESPACE",…

Sebastian
- 865
- 5
- 13
0
votes
0 answers
Ignore files on monorepo
I'm working on a monorepo, which means I have to constantly switch between folders (say web and server). I noticed that when I open a file from project "A" the ignored file patterns works as expected, but when I switch to project "B" the ignored…

Jeremy
- 1,447
- 20
- 40