diff options
author | aycabta <[email protected]> | 2021-05-30 17:19:57 +0900 |
---|---|---|
committer | aycabta <[email protected]> | 2021-06-21 17:58:49 +0900 |
commit | 8135f489bee3e89e3bdd4f55ee7b71d92f96d99e (patch) | |
tree | 1e86ab81b2bf5790a6bdcf4357ca2ad560a3166f /lib/reline/ansi.rb | |
parent | 882c0d50159c95415843e34df5111a25081e3a93 (diff) |
[ruby/reline] Add binding C-x C-x to em_exchange_mark on Windows
https://github.com/ruby/reline/commit/24a2489b62
Diffstat (limited to 'lib/reline/ansi.rb')
-rw-r--r-- | lib/reline/ansi.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/reline/ansi.rb b/lib/reline/ansi.rb index bdce436969..bbb0623b16 100644 --- a/lib/reline/ansi.rb +++ b/lib/reline/ansi.rb @@ -35,7 +35,7 @@ class Reline::ANSI { # default bindings [27, 32] => :em_set_mark, # M-<space> - [24, 24] => :em_exchange_mark, # C-x C-x TODO also add Windows + [24, 24] => :em_exchange_mark, # C-x C-x }.each_pair do |key, func| config.add_default_key_binding_by_keymap(:emacs, key, func) end |