The default key bindings:
|
"terminal-view": { |
|
"cmd-c": "terminal:copy", |
|
"cmd-v": "terminal:paste", |
|
"cmd-k": "terminal:clear" |
|
} |
do not work, and neither does this in the per-user keymap.cson:
'terminal-view':
'ctrl-tab': 'pane:show-next-item'
'ctrl-shift-tab': 'pane:show-previous-item'
In all cases, when the key is pressed, nothing happens and the Atom Key Binding Resolver does not even register it. I assume the terminal library is intercepting these, but I haven't been able to figure out how to override it.
The default key bindings:
atom-terminal-tab/keymaps/terminal.json
Lines 5 to 9 in 2796c77
do not work, and neither does this in the per-user
keymap.cson:In all cases, when the key is pressed, nothing happens and the Atom Key Binding Resolver does not even register it. I assume the terminal library is intercepting these, but I haven't been able to figure out how to override it.