This repository was archived by the owner on Feb 12, 2025. It is now read-only.
How to open telescope with normal mode #53
Unanswered
thekaganugur
asked this question in
Q&A
Replies: 2 comments
-
|
One more thing I'm having a problem transitioning from |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
The require('dressing').setup({
select = {
telescope = {
initial_mode = "normal"
}
}
})As for sorting code actions, you could do something like: require('dressing').setup({
select = {
get_config = function(opts, items)
if opts.kind == "codeaction" then
-- sort items
end
end,
}
})Note that for the sorting it requires a commit that I just pushed, so you'll need to git pull. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to open telescope with
initial_mode=normalsince most of the time I won't do a search but rather select withjandk.I couldn't find a way to do it. Any help apricated.
Beta Was this translation helpful? Give feedback.
All reactions