mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 07:57:22 +00:00
Added code for parsing end key
This commit is contained in:
parent
6482fd52fb
commit
aed26f8c1e
1 changed files with 3 additions and 0 deletions
|
@ -325,8 +325,11 @@ class BindingParser:
|
|||
result += 'Right Arrow'
|
||||
elif c == 'D':
|
||||
result = "Left Arrow"
|
||||
elif c == 'F':
|
||||
result = "End"
|
||||
elif c == 'H':
|
||||
result = "Home"
|
||||
|
||||
return result
|
||||
|
||||
def get_readable_binding(self):
|
||||
|
|
Loading…
Reference in a new issue