Questions tagged [plugin-telescope]
The plugin-telescope tag has no summary.
20 questions
0 votes
0 answers
64 views
How do I gray out .gitignore with telescope?
The behavior I have now is that all files and folders specified in Telescope are not shown at all while I use NVChad. Is there a way to gray them out instead, so I can still see them, but just give ...
0 votes
1 answer
244 views
Can I have numbers on all telescope.nvim picker results, like with ":Telescope buffers"?
When I do :Telescope buffers to picker from a buffer list, there are numbers for each buffer. I know those are just vim buffer numbers, but having numbers for each result in Telescope would be ...
0 votes
1 answer
2k views
How to make telescope change the search directory of the current picker?
I would like to change the search directory of the current telescope picker in neovim. Ideal workflow: I open telescope find files or telescope live grep, and then start typing something Realise that ...
0 votes
1 answer
280 views
Does the nvim-jdtls support method or field in addition to class for lsp_workspace_symbol?
I noticed that when I use :Telescope lsp_workspace_symbol query=xxx I only get results of type class, in other words it only find classes with that xxx in the name, but not methods, fields, ...
0 votes
1 answer
246 views
Neovim not loading User-level shell (bash) profile when running on a remote server
I installed Neovim on a remote server. Everything runs fine, except that among the very few plugins I use, Telescope does not work properly since it does not find the rg (ripgrep) command. Two ...
0 votes
1 answer
727 views
Remapping telescope's move_selection doesn't work
New to vim. Using Dvorak layout. Trying to remap the move_selection_{next,previous} to t for next and c for previous, to match my text editing mappings. Here's the code: { "nvim-telescope/...
1 vote
1 answer
508 views
Pass custom glob to ripgrep when using Telescope live_grep
I want to use the find_command argument in Telescope's live_grep, as far as I know, it accepts a list of arguments that will be passed to ripgrep in this case. This command works in the terminal: rg -...
4 votes
1 answer
4k views
How to exclude some files and folder in telescope?
I want to exclude package-lock.json and lazy-lock.json on telescope but I cant make it work. Both files are not included in .gitignore but I don't want to search on them. This my config for telescope ...
0 votes
1 answer
481 views
Neovim: Telescope fails to find `tbl_isarray`
I run Neovim v0.9.1 using Lua 5.1 (not LuaJIT) and telescope. As soon as I invoke telescope.builtin.git_files, Neovim shows the following error: E5108: Error executing lua: ...ugins/telescope.nvim/lua/...
1 vote
3 answers
3k views
How to do fuzzy live grep on git files?
I want to be able to do a live fuzzy search on all source-controlled python files for example, or just all source-controlled files. Live, meaning updating in real time. Is there a way to do it? ...
0 votes
1 answer
571 views
Error in coroutine while installing nvim-lua.planary.nvim with nvim 0.9.1
I'm trying to setup my nvim environment following this video. I tried to install Telescope and got this error. I'm installing this on wsl2, nvim version 0.9.1 [packer.nvim] [ERROR 18:23:00] async.lua:...
2 votes
2 answers
2k views
Is there a way to disable Treesitter in Telescope?
I have max file size rule for files, setup in treesitter config, it works: require 'nvim-treesitter.configs'.setup { highlight = { enable = true, is_supported = function() if vim.fn.strwidth(...
1 vote
3 answers
6k views
Can I use Telescope to find all commands and functions?
I am switching over from Emacs, Doom Emacs specifically. It had a very nice feature where you could just press M-x and then start typing the command you're looking for and it will fuzzy find it for ...
0 votes
0 answers
239 views
Why does nvimtree keep changing to the wrong directory?
I have a project with the following structure. It's a monorepo based react project. It opens fine in the beginning. But as soon as I open any file e.g. apps/editor/pages/index.js. The NVIMTree ...
0 votes
2 answers
3k views
Setup Telescope to save and close all buffers, when opening a new file
I'm following a Neovim tutorial on LaraCasts from Jess Archer, setting up Neovim. I've used Vim for a while, but I'm new with Neovim. You can see Jess Archers dotfiles here: Jess Archers Dotfiles. I ...