Skip to content

Commit

Permalink
Merge branch 'wincent/delete-words'
Browse files Browse the repository at this point in the history
* wincent/delete-words:
  docs: update HISTORY
  feat: teach prompt window to delete words with `<C-w>`
  • Loading branch information
wincent committed Aug 29, 2022
2 parents 54fc4c7 + 9a0e934 commit 1d40403
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doc/command-t.txt
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,8 @@ main (not yet released) ~

- fix: fix rendering glitches due to interaction with vim-dirvish
(https://github.com/wincent/command-t/commit/ca959c9437d13ca0).
- feat: teach prompt window to delete a word with `<C-w>`
(https://github.com/wincent/command-t/commit/0a19ffbe7bed4988).

6.0.0-a.1 (28 August 2022) ~

Expand Down
1 change: 1 addition & 0 deletions lua/wincent/commandt/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ local default_options = {
['<C-s>'] = 'open_split',
['<C-t>'] = 'open_tab',
['<C-v>'] = 'open_vsplit',
['<C-w>'] = '<C-S-w>',
['<CR>'] = 'open',
['<Down>'] = 'select_next',
['<Up>'] = 'select_previous',
Expand Down

0 comments on commit 1d40403

Please sign in to comment.