Merge pull request #104 from villelaitila/feature/101-ctrl-d-to-forward-delete

Familiar forward deletion keyboard shortcut Ctrl-D (#101)
This commit is contained in:
Anthony Sottile
2020-11-03 10:43:38 -08:00
committed by GitHub
3 changed files with 5 additions and 2 deletions

View File

@@ -96,6 +96,7 @@ KEYNAME_REWRITE = {
b'^?': b'KEY_BACKSPACE',
# linux, perhaps others
b'^H': b'KEY_BACKSPACE', # ^Backspace on my keyboard
b'^D': b'KEY_DC',
b'PADENTER': b'^M', # Enter on numpad
}

View File

@@ -290,6 +290,7 @@ KEYS = [
Key('^_', b'^_', '\x1f'),
Key('^\\', b'^\\', '\x1c'),
Key('!resize', b'KEY_RESIZE', curses.KEY_RESIZE),
Key('^D', b'^D', '\x04'),
]
KEYS_TMUX = {k.tmux: k.wch for k in KEYS}
KEYS_CURSES = {k.value: k.curses for k in KEYS}

View File

@@ -72,14 +72,15 @@ def test_delete_at_end_of_file(run, tmpdir):
h.await_text_missing('*')
def test_delete_removes_character_afterwards(run, tmpdir):
@pytest.mark.parametrize('key', ('DC', '^D'))
def test_delete_removes_character_afterwards(run, tmpdir, key):
f = tmpdir.join('f')
f.write('hello world')
with run(str(f)) as h, and_exit(h):
h.await_text('hello world')
h.press('Right')
h.press('DC')
h.press(key)
h.await_text('hllo world')
h.await_text('f *')