Allow case-insensitive match for goto selection
See original GitHub issueIssue Description
In kakoune
, the goto
commands allow case-insensitive selection. For e.g. command for jumping to start of the buffer is gk
or gK
. It’s especially useful when extending selection with Gk
or GK
. So there is no need to release the Shift
key when typing the command.
One hacky way to fix this would be to duplicate the commands in the jumps
array in goto.ts
here.
I believe there should be a much cleaner way to fix this by tweaking promptInList
with an extra flag.
Other commands still need the current case-sensitive match behavior. For e.g. <a-i>
.
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Case-insensitive pattern matching in PostgreSQL - CYBERTEC
A solution for case-insensitive pattern matching WHERE col COLLATE "C" ~* '^search. *pattern' ; Note that for this to work as expected, we...
Read more >MongoDB: Is it possible to make a case-insensitive query?
Just to clarify this: case-insensitive searches are allowed on indexed fields, they just won't use the index and will be as slow as...
Read more >Case Insensitive Filtering Using Power Query - MyExcelOnline
Ensure the Country column is selected. Go to Add Column > From Text > Format > Uppercase. Case Insensitive Filtering. Now this should...
Read more >Case Insensitive Queries - Ask TOM
Is there a way to SELECT from a table in a case insensitive manner? For example, I want to execute: SELECT * FROM...
Read more >Solved: How to apply a case insensitive condition to an em...
This worked. Now I can match the object of an email in a case insensitive manner and the condition is true if it...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@yuchenshi thanks for the idea. That works for me.
I was just going to comment to ask for when
0.3.0
would be out. And it was just released. Thanks @71.FYI, a better workaround is possible now via the
dance.menus
setting on master. It still requires duplicating all items, but at least should not require modifying the source code.