Skip to content

Commit

Permalink
fix(list): support alt + backspace
Browse files Browse the repository at this point in the history
Closes #5266
  • Loading branch information
chemzqm committed Feb 27, 2025
1 parent b30a45c commit 5770528
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions autoload/coc/prompt.vim
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ let s:char_map = {
\ "\<A-x>": '<A-x>',
\ "\<A-y>": '<A-y>',
\ "\<A-z>": '<A-z>',
\ "\<A-bs>": '<A-bs>',
\ }

function! coc#prompt#getc() abort
Expand Down
1 change: 1 addition & 0 deletions src/list/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export const validKeys = [
'<A-x>',
'<A-y>',
'<A-z>',
'<A-bs>'
]

export class ListConfiguration {
Expand Down

0 comments on commit 5770528

Please sign in to comment.