mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
This commit is contained in:
parent
23c2f2034d
commit
204bb99079
2 changed files with 27 additions and 0 deletions
23
news/5056.rst
Normal file
23
news/5056.rst
Normal file
|
@ -0,0 +1,23 @@
|
|||
**Added:**
|
||||
|
||||
* key_bindings: map `escape-f` as another word completer for macOS
|
||||
|
||||
**Changed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
|
@ -429,4 +429,8 @@ def load_xonsh_bindings(ptk_bindings: KeyBindingsBase) -> KeyBindingsBase:
|
|||
# Complete a single auto-suggestion word
|
||||
create_alias([Keys.ControlRight], ["escape", "f"])
|
||||
|
||||
# since macOS uses Control as reserved, then we use the alt/option key instead
|
||||
# which is mapped as the "escape" key
|
||||
create_alias(["escape", "right"], ["escape", "f"])
|
||||
|
||||
return key_bindings
|
||||
|
|
Loading…
Add table
Reference in a new issue