mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-30 12:40:44 +00:00
feat: bind M-d to a reasonable (Emacs-like) default (#3358)
`M-d` was not bond. Many users might miss the behavior introduced by this commit.
This commit is contained in:
parent
9e26424aa7
commit
bdd6731950
1 changed files with 1 additions and 0 deletions
|
|
@ -2298,6 +2298,7 @@ export function useTextBuffer({
|
|||
else if (key.meta && key.name === 'b') move('wordLeft');
|
||||
else if ((key.ctrl || key.meta) && key.name === 'right')
|
||||
move('wordRight');
|
||||
else if (key.meta && key.name === 'd') deleteWordRight();
|
||||
else if (key.meta && key.name === 'f') move('wordRight');
|
||||
else if (key.name === 'home') move('home');
|
||||
else if (key.ctrl && key.name === 'a') move('home');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue