summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-05-26 00:48:26 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-05-26 00:48:26 +0900
commit2993b361333147f6dfb86a153971c22329ffbaf4 (patch)
tree27e0bc5ba1b511d06d947f17c61b45ae490383f6
parent98be203704e98c53b2d3b939b10a0d765c76d53d (diff)
Fix indexes in comments
-rw-r--r--lib/reline/key_actor/emacs.rb65
-rw-r--r--lib/reline/key_actor/vi_command.rb65
2 files changed, 64 insertions, 66 deletions
diff --git a/lib/reline/key_actor/emacs.rb b/lib/reline/key_actor/emacs.rb
index 5a847169c4..b634b725ae 100644
--- a/lib/reline/key_actor/emacs.rb
+++ b/lib/reline/key_actor/emacs.rb
@@ -448,71 +448,70 @@ class Reline::KeyActor::Emacs < Reline::KeyActor::Base
:ed_unassigned,
# 223 M-_
:ed_unassigned,
- # 223 M-`
+ # 224 M-`
:ed_unassigned,
- # 224 M-a
+ # 225 M-a
:ed_unassigned,
- # 225 M-b
+ # 226 M-b
:ed_prev_word,
- # 226 M-c
+ # 227 M-c
:em_capitol_case,
- # 227 M-d
+ # 228 M-d
:em_delete_next_word,
- # 228 M-e
+ # 229 M-e
:ed_unassigned,
- # 229 M-f
+ # 230 M-f
:em_next_word,
- # 230 M-g
+ # 231 M-g
:ed_unassigned,
- # 231 M-h
+ # 232 M-h
:ed_unassigned,
- # 232 M-i
+ # 233 M-i
:ed_unassigned,
- # 233 M-j
+ # 234 M-j
:ed_unassigned,
- # 234 M-k
+ # 235 M-k
:ed_unassigned,
- # 235 M-l
+ # 236 M-l
:em_lower_case,
- # 236 M-m
+ # 237 M-m
:ed_unassigned,
- # 237 M-n
+ # 238 M-n
:ed_search_next_history,
- # 238 M-o
+ # 239 M-o
:ed_unassigned,
- # 239 M-p
+ # 240 M-p
:ed_search_prev_history,
- # 240 M-q
+ # 241 M-q
:ed_unassigned,
- # 241 M-r
+ # 242 M-r
:ed_unassigned,
- # 242 M-s
+ # 243 M-s
:ed_unassigned,
- # 243 M-t
+ # 244 M-t
:ed_unassigned,
- # 244 M-u
+ # 245 M-u
:em_upper_case,
- # 245 M-v
+ # 246 M-v
:ed_unassigned,
- # 246 M-w
+ # 247 M-w
:em_copy_region,
- # 247 M-x
+ # 248 M-x
:ed_command,
- # 248 M-y
+ # 249 M-y
:ed_unassigned,
- # 249 M-z
+ # 250 M-z
:ed_unassigned,
- # 250 M-{
+ # 251 M-{
:ed_unassigned,
- # 251 M-|
+ # 252 M-|
:ed_unassigned,
- # 252 M-}
+ # 253 M-}
:ed_unassigned,
- # 253 M-~
+ # 254 M-~
:ed_unassigned,
- # 254 M-^?
+ # 255 M-^?
:ed_delete_prev_word
- # 255
# EOF
]
end
diff --git a/lib/reline/key_actor/vi_command.rb b/lib/reline/key_actor/vi_command.rb
index 724f459011..ac8458c87c 100644
--- a/lib/reline/key_actor/vi_command.rb
+++ b/lib/reline/key_actor/vi_command.rb
@@ -448,71 +448,70 @@ class Reline::KeyActor::ViCommand < Reline::KeyActor::Base
:ed_unassigned,
# 223 M-_
:ed_unassigned,
- # 223 M-`
+ # 224 M-`
:ed_unassigned,
- # 224 M-a
+ # 225 M-a
:ed_unassigned,
- # 225 M-b
+ # 226 M-b
:ed_unassigned,
- # 226 M-c
+ # 227 M-c
:ed_unassigned,
- # 227 M-d
+ # 228 M-d
:ed_unassigned,
- # 228 M-e
+ # 229 M-e
:ed_unassigned,
- # 229 M-f
+ # 230 M-f
:ed_unassigned,
- # 230 M-g
+ # 231 M-g
:ed_unassigned,
- # 231 M-h
+ # 232 M-h
:ed_unassigned,
- # 232 M-i
+ # 233 M-i
:ed_unassigned,
- # 233 M-j
+ # 234 M-j
:ed_unassigned,
- # 234 M-k
+ # 235 M-k
:ed_unassigned,
- # 235 M-l
+ # 236 M-l
:ed_unassigned,
- # 236 M-m
+ # 237 M-m
:ed_unassigned,
- # 237 M-n
+ # 238 M-n
:ed_unassigned,
- # 238 M-o
+ # 239 M-o
:ed_unassigned,
- # 239 M-p
+ # 240 M-p
:ed_unassigned,
- # 240 M-q
+ # 241 M-q
:ed_unassigned,
- # 241 M-r
+ # 242 M-r
:ed_unassigned,
- # 242 M-s
+ # 243 M-s
:ed_unassigned,
- # 243 M-t
+ # 244 M-t
:ed_unassigned,
- # 244 M-u
+ # 245 M-u
:ed_unassigned,
- # 245 M-v
+ # 246 M-v
:ed_unassigned,
- # 246 M-w
+ # 247 M-w
:ed_unassigned,
- # 247 M-x
+ # 248 M-x
:ed_unassigned,
- # 248 M-y
+ # 249 M-y
:ed_unassigned,
- # 249 M-z
+ # 250 M-z
:ed_unassigned,
- # 250 M-{
+ # 251 M-{
:ed_unassigned,
- # 251 M-|
+ # 252 M-|
:ed_unassigned,
- # 252 M-}
+ # 253 M-}
:ed_unassigned,
- # 253 M-~
+ # 254 M-~
:ed_unassigned,
- # 254 M-^?
+ # 255 M-^?
:ed_unassigned
- # 255
# EOF
]
end