You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 24, 2023. It is now read-only.
Pressing with no options selected gives me this error message:
search hit BOTTOM, continuing at TOP
E486: Pattern not found: ==
search hit TOP, continuing at BOTTOM
E486: Pattern not found: ==
E5108: Error executing lua ...lette.nvim/lua/telescope/_extensions/comman
d_palette.lua:155: attempt to index local 'selection' (a nil value)
stack traceback:
...lette.nvim/lua/telescope/_extensions/command_palette.lua:155:
in function 'run_replace_or_original'
...nvim/plugged/telescope.nvim/lua/telescope/actions/mt.lua:30: i
n function 'key_func'
...e/nvim/plugged/telescope.nvim/lua/telescope/mappings.lua:236:
in function 'execute_keymap'
[string ":lua"]:1: in main chunk
E5108: Error executing lua ...lette.nvim/lua/telescope/_extensions/comman
d_palette.lua:155: attempt to index local 'selection' (a nil value)
stack traceback:
...lette.nvim/lua/telescope/_extensions/command_palette.lua:155:
in function 'run_replace_or_original'
...nvim/plugged/telescope.nvim/lua/telescope/actions/mt.lua:30: i
n function 'key_func'
...e/nvim/plugged/telescope.nvim/lua/telescope/mappings.lua:236:
in function 'execute_keymap'
[string ":lua"]:1: in main chunk
Here are my installed plugins, yes I did run :PlugInstall
The error happens because you defined commands outside of telescope setup section.
If you follow the README file and define commands inside setup section of telescope, the error will be solved.
But i tried to use your approach that defined telescope variable first and call setup function on it. And surprisingly got same error message!
So please use the approach mentioned in README file.
require('telescope').setup({
extensions= {
command_palette= {
-- your commands goes here
}
}
})
Pressing with no options selected gives me this error message:
Here are my installed plugins, yes I did run :PlugInstall
The text was updated successfully, but these errors were encountered: