-
-
Notifications
You must be signed in to change notification settings - Fork 71
Open
Description
From #1607, yes, the emacs-mcx.cursorMoveOnFindWidget
solved it.
But not good enough.
When I C-s to search, and now I typed C-n. Ohhhh, it's open a new tab. I just want to go to next line. What happend?
The things happend on other keys like C-p (Move to file), C-b (close left pane).
I think the good way is just disable arrow keys (LEFT & RIGHT), HOME and END at search. Not others, do as plain Emacs.
[
{
"key": "right",
"command": "-emacs-mcx.isearchExit",
"when": "editorFocus && findWidgetVisible && !config.emacs-mcx.cursorMoveOnFindWidget && !isComposing && !replaceInputFocussed"
},
{
"key": "left",
"command": "-emacs-mcx.isearchExit",
"when": "editorFocus && findWidgetVisible && !config.emacs-mcx.cursorMoveOnFindWidget && !isComposing && !replaceInputFocussed"
},
{
"key": "home",
"command": "-emacs-mcx.isearchExit",
"when": "editorFocus && findWidgetVisible && !config.emacs-mcx.cursorMoveOnFindWidget && !isComposing && !replaceInputFocussed"
},
{
"key": "end",
"command": "-emacs-mcx.isearchExit",
"when": "editorFocus && findWidgetVisible && !config.emacs-mcx.cursorMoveOnFindWidget && !isComposing && !replaceInputFocussed"
}
]
hidaris
Metadata
Metadata
Assignees
Labels
No labels