mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-19 21:11:32 +01:00
addressed feedback
This commit is contained in:
parent
54295ff54d
commit
5737425463
@ -55,8 +55,7 @@
|
||||
},
|
||||
{
|
||||
"command": "app:focusCmdInput",
|
||||
"keys": ["Cmd:i"],
|
||||
"commandStr":"/mainview session;/screen:set focus=cmd;/screen:set focus=input"
|
||||
"keys": ["Cmd:i"]
|
||||
},
|
||||
{
|
||||
"command": "app:focusSelectedLine",
|
||||
|
@ -228,7 +228,11 @@ class Model {
|
||||
for (let index = 1; index <= 9; index++) {
|
||||
this.keybindManager.registerKeybinding("app", "model", "app:selectWorkspace-" + index, null);
|
||||
}
|
||||
this.keybindManager.registerKeybinding("app", "model", "app:focusCmdInput", null);
|
||||
this.keybindManager.registerKeybinding("app", "model", "app:focusCmdInput", (waveEvent) => {
|
||||
console.log("focus cmd input callback");
|
||||
this.onFocusCmdInputPressed();
|
||||
return true;
|
||||
});
|
||||
this.keybindManager.registerKeybinding("app", "model", "app:bookmarkActiveLine", null);
|
||||
this.keybindManager.registerKeybinding("app", "model", "app:openHistory", null);
|
||||
this.keybindManager.registerKeybinding("app", "model", "app:openTabSearchModal", (waveEvent) => {
|
||||
|
Loading…
Reference in New Issue
Block a user