-
I'd like to use aceVimMap('<C-d>', '<Delete>', 'insert');
aceVimMap('<C-u>', '<C-o>d0', 'insert');
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I used this mapping to delete to start of the line: |
Beta Was this translation helpful? Give feedback.
I used this mapping to delete to start of the line:
aceVimMap('<C-u>', '<Esc>d0xi', 'insert');
You can use this to delete a character to the right but it won't work with <C-d> which is what you want to use
aceVimMap('<C-s>', '<Esc>lcl', 'insert')
Apparently Ctrl keys that are already mapped can't be remapped If there is a function to unmap a key in Ace maybe it will solve the problem.