reline 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/reline/io/ansi.rb +8 -15
- data/lib/reline/key_stroke.rb +2 -2
- data/lib/reline/line_editor.rb +76 -104
- data/lib/reline/unicode/east_asian_width.rb +41 -15
- data/lib/reline/unicode.rb +2 -2
- data/lib/reline/version.rb +1 -1
- data/lib/reline.rb +22 -13
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2fb74f487afccdfb3b0530a043cfb7090f2a4860f2fdd168bc94112818b5f57d
|
4
|
+
data.tar.gz: 96b74e0f611f24022f204e9551d8692ef017c52a197ae169fbfdc1074a130857
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ffdcec13818f2445bd9f639e75b36405c76a439378335fa7c05fad90a26f06965e54cd9dce1b8e1411e16df9ffc80c3c0ac356320654af2ebd40a33fd28cb247
|
7
|
+
data.tar.gz: 24be10266aebce2d07f1519010f6ce0e6b92b816b17e526ede204943880b54388aa5ebf5da086bde0212b5e1f837936e4972c09a57a2d6c94f7c9a41412966d9
|
data/lib/reline/io/ansi.rb
CHANGED
@@ -2,18 +2,6 @@ require 'io/console'
|
|
2
2
|
require 'io/wait'
|
3
3
|
|
4
4
|
class Reline::ANSI < Reline::IO
|
5
|
-
CAPNAME_KEY_BINDINGS = {
|
6
|
-
'khome' => :ed_move_to_beg,
|
7
|
-
'kend' => :ed_move_to_end,
|
8
|
-
'kdch1' => :key_delete,
|
9
|
-
'kpp' => :ed_search_prev_history,
|
10
|
-
'knp' => :ed_search_next_history,
|
11
|
-
'kcuu1' => :ed_prev_history,
|
12
|
-
'kcud1' => :ed_next_history,
|
13
|
-
'kcuf1' => :ed_next_char,
|
14
|
-
'kcub1' => :ed_prev_char,
|
15
|
-
}
|
16
|
-
|
17
5
|
ANSI_CURSOR_KEY_BINDINGS = {
|
18
6
|
# Up
|
19
7
|
'A' => [:ed_prev_history, {}],
|
@@ -217,9 +205,7 @@ class Reline::ANSI < Reline::IO
|
|
217
205
|
break
|
218
206
|
end
|
219
207
|
end
|
220
|
-
buf.
|
221
|
-
stdin.ungetc ch
|
222
|
-
end
|
208
|
+
@buf.concat buf.bytes
|
223
209
|
end
|
224
210
|
[match[:column].to_i - 1, match[:row].to_i - 1] if match
|
225
211
|
end
|
@@ -309,6 +295,13 @@ class Reline::ANSI < Reline::IO
|
|
309
295
|
# Signal.trap may raise an ArgumentError if the platform doesn't support the signal.
|
310
296
|
end
|
311
297
|
|
298
|
+
def read_single_char(keyseq_timeout)
|
299
|
+
# Disable intr to read `C-c` `C-z` `C-\` for quoted insert
|
300
|
+
@input.raw(intr: false) do
|
301
|
+
super
|
302
|
+
end
|
303
|
+
end
|
304
|
+
|
312
305
|
def prep
|
313
306
|
# Enable bracketed paste
|
314
307
|
write "\e[?2004h" if Reline.core.config.enable_bracketed_paste && both_tty?
|
data/lib/reline/key_stroke.rb
CHANGED
@@ -56,8 +56,8 @@ class Reline::KeyStroke
|
|
56
56
|
if func.is_a?(Array)
|
57
57
|
# Perform simple macro expansion for single byte key bindings.
|
58
58
|
# Multibyte key bindings and recursive macro expansion are not supported yet.
|
59
|
-
|
60
|
-
keys =
|
59
|
+
macro = func.pack('c*').force_encoding(@encoding)
|
60
|
+
keys = macro.chars.map do |c|
|
61
61
|
f = key_mapping.get(c.bytes)
|
62
62
|
Reline::Key.new(c, f.is_a?(Symbol) ? f : :ed_insert, false)
|
63
63
|
end
|
data/lib/reline/line_editor.rb
CHANGED
@@ -250,8 +250,8 @@ class Reline::LineEditor
|
|
250
250
|
@resized = false
|
251
251
|
@cache = {}
|
252
252
|
@rendered_screen = RenderedScreen.new(base_y: 0, lines: [], cursor_y: 0)
|
253
|
-
@
|
254
|
-
@
|
253
|
+
@undo_redo_history = [[[""], 0, 0]]
|
254
|
+
@undo_redo_index = 0
|
255
255
|
@restoring = false
|
256
256
|
@prev_action_state = NullActionState
|
257
257
|
@next_action_state = NullActionState
|
@@ -542,6 +542,7 @@ class Reline::LineEditor
|
|
542
542
|
Reline::IOGate.show_cursor
|
543
543
|
end
|
544
544
|
Reline::IOGate.move_cursor_column new_cursor_x
|
545
|
+
new_cursor_y = new_cursor_y.clamp(0, screen_height - 1)
|
545
546
|
Reline::IOGate.move_cursor_down new_cursor_y - cursor_y
|
546
547
|
@rendered_screen.cursor_y = new_cursor_y
|
547
548
|
ensure
|
@@ -911,28 +912,36 @@ class Reline::LineEditor
|
|
911
912
|
)
|
912
913
|
end
|
913
914
|
|
914
|
-
private def run_for_operators(key, method_symbol
|
915
|
+
private def run_for_operators(key, method_symbol)
|
916
|
+
# Reject multibyte input (converted to ed_insert) in vi_command mode
|
917
|
+
return if method_symbol == :ed_insert && @config.editing_mode_is?(:vi_command) && !@waiting_proc
|
918
|
+
|
919
|
+
if ARGUMENT_DIGIT_METHODS.include?(method_symbol) && !@waiting_proc
|
920
|
+
wrap_method_call(method_symbol, key, false)
|
921
|
+
return
|
922
|
+
end
|
923
|
+
|
915
924
|
if @vi_waiting_operator
|
916
|
-
if VI_MOTIONS.include?(method_symbol)
|
925
|
+
if @waiting_proc || VI_MOTIONS.include?(method_symbol)
|
917
926
|
old_byte_pointer = @byte_pointer
|
918
927
|
@vi_arg = (@vi_arg || 1) * @vi_waiting_operator_arg
|
919
|
-
|
928
|
+
wrap_method_call(method_symbol, key, true)
|
920
929
|
unless @waiting_proc
|
921
930
|
byte_pointer_diff = @byte_pointer - old_byte_pointer
|
922
931
|
@byte_pointer = old_byte_pointer
|
923
|
-
|
924
|
-
wrap_method_call(@vi_waiting_operator, method_obj, byte_pointer_diff)
|
932
|
+
__send__(@vi_waiting_operator, byte_pointer_diff)
|
925
933
|
cleanup_waiting
|
926
934
|
end
|
927
935
|
else
|
928
936
|
# Ignores operator when not motion is given.
|
929
|
-
|
937
|
+
wrap_method_call(method_symbol, key, false)
|
930
938
|
cleanup_waiting
|
931
939
|
end
|
932
|
-
@vi_arg = nil
|
933
940
|
else
|
934
|
-
|
941
|
+
wrap_method_call(method_symbol, key, false)
|
935
942
|
end
|
943
|
+
@vi_arg = nil
|
944
|
+
@kill_ring.process
|
936
945
|
end
|
937
946
|
|
938
947
|
private def argumentable?(method_obj)
|
@@ -945,20 +954,23 @@ class Reline::LineEditor
|
|
945
954
|
method_obj and method_obj.parameters.any? { |param| param[0] == :key and param[1] == :inclusive }
|
946
955
|
end
|
947
956
|
|
948
|
-
def wrap_method_call(method_symbol,
|
949
|
-
if @
|
950
|
-
|
951
|
-
|
957
|
+
def wrap_method_call(method_symbol, key, with_operator)
|
958
|
+
if @waiting_proc
|
959
|
+
@waiting_proc.call(key)
|
960
|
+
return
|
952
961
|
end
|
962
|
+
|
963
|
+
return unless respond_to?(method_symbol, true)
|
964
|
+
method_obj = method(method_symbol)
|
953
965
|
if @vi_arg and argumentable?(method_obj)
|
954
|
-
if
|
955
|
-
method_obj.(key, arg: @vi_arg, inclusive:
|
966
|
+
if inclusive?(method_obj)
|
967
|
+
method_obj.(key, arg: @vi_arg, inclusive: with_operator)
|
956
968
|
else
|
957
969
|
method_obj.(key, arg: @vi_arg)
|
958
970
|
end
|
959
971
|
else
|
960
|
-
if
|
961
|
-
method_obj.(key, inclusive:
|
972
|
+
if inclusive?(method_obj)
|
973
|
+
method_obj.(key, inclusive: with_operator)
|
962
974
|
else
|
963
975
|
method_obj.(key)
|
964
976
|
end
|
@@ -984,50 +996,9 @@ class Reline::LineEditor
|
|
984
996
|
cleanup_waiting unless VI_WAITING_ACCEPT_METHODS.include?(method_symbol) || VI_MOTIONS.include?(method_symbol)
|
985
997
|
end
|
986
998
|
|
987
|
-
|
988
|
-
old_byte_pointer = @byte_pointer
|
989
|
-
@waiting_proc.call(key)
|
990
|
-
if @vi_waiting_operator
|
991
|
-
byte_pointer_diff = @byte_pointer - old_byte_pointer
|
992
|
-
@byte_pointer = old_byte_pointer
|
993
|
-
method_obj = method(@vi_waiting_operator)
|
994
|
-
wrap_method_call(@vi_waiting_operator, method_obj, byte_pointer_diff)
|
995
|
-
cleanup_waiting
|
996
|
-
end
|
997
|
-
@kill_ring.process
|
998
|
-
return
|
999
|
-
end
|
1000
|
-
|
1001
|
-
# Reject multibyte input (converted to ed_insert) in vi_command mode
|
1002
|
-
return if method_symbol == :ed_insert && @config.editing_mode_is?(:vi_command)
|
999
|
+
process_insert(force: method_symbol != :ed_insert)
|
1003
1000
|
|
1004
|
-
|
1005
|
-
method_obj = method(method_symbol)
|
1006
|
-
end
|
1007
|
-
if @vi_arg
|
1008
|
-
if ARGUMENT_DIGIT_METHODS.include?(method_symbol)
|
1009
|
-
ed_argument_digit(key)
|
1010
|
-
else
|
1011
|
-
if argumentable?(method_obj)
|
1012
|
-
run_for_operators(key, method_symbol) do |with_operator|
|
1013
|
-
wrap_method_call(method_symbol, method_obj, key, with_operator)
|
1014
|
-
end
|
1015
|
-
elsif method_obj
|
1016
|
-
wrap_method_call(method_symbol, method_obj, key)
|
1017
|
-
end
|
1018
|
-
@kill_ring.process
|
1019
|
-
@vi_arg = nil
|
1020
|
-
end
|
1021
|
-
elsif method_obj
|
1022
|
-
if method_symbol == :ed_argument_digit
|
1023
|
-
wrap_method_call(method_symbol, method_obj, key)
|
1024
|
-
else
|
1025
|
-
run_for_operators(key, method_symbol) do |with_operator|
|
1026
|
-
wrap_method_call(method_symbol, method_obj, key, with_operator)
|
1027
|
-
end
|
1028
|
-
end
|
1029
|
-
@kill_ring.process
|
1030
|
-
end
|
1001
|
+
run_for_operators(key, method_symbol)
|
1031
1002
|
end
|
1032
1003
|
|
1033
1004
|
def update(key)
|
@@ -1041,7 +1012,7 @@ class Reline::LineEditor
|
|
1041
1012
|
end
|
1042
1013
|
|
1043
1014
|
def input_key(key)
|
1044
|
-
|
1015
|
+
old_buffer_of_lines = @buffer_of_lines.dup
|
1045
1016
|
@config.reset_oneshot_key_bindings
|
1046
1017
|
if key.char.nil?
|
1047
1018
|
process_insert(force: true)
|
@@ -1049,11 +1020,8 @@ class Reline::LineEditor
|
|
1049
1020
|
finish
|
1050
1021
|
return
|
1051
1022
|
end
|
1052
|
-
@dialogs.
|
1053
|
-
|
1054
|
-
return
|
1055
|
-
end
|
1056
|
-
end
|
1023
|
+
return if @dialogs.any? { |dialog| dialog.name == key.method_symbol }
|
1024
|
+
|
1057
1025
|
@completion_occurs = false
|
1058
1026
|
|
1059
1027
|
process_key(key.char, key.method_symbol)
|
@@ -1069,7 +1037,9 @@ class Reline::LineEditor
|
|
1069
1037
|
@completion_journey_state = nil
|
1070
1038
|
end
|
1071
1039
|
|
1072
|
-
|
1040
|
+
modified = old_buffer_of_lines != @buffer_of_lines
|
1041
|
+
|
1042
|
+
push_undo_redo(modified) unless @restoring
|
1073
1043
|
@restoring = false
|
1074
1044
|
|
1075
1045
|
if @in_pasting
|
@@ -1077,7 +1047,6 @@ class Reline::LineEditor
|
|
1077
1047
|
return
|
1078
1048
|
end
|
1079
1049
|
|
1080
|
-
modified = @old_buffer_of_lines != @buffer_of_lines
|
1081
1050
|
if !@completion_occurs && modified && !@config.disable_completion && @config.autocompletion
|
1082
1051
|
# Auto complete starts only when edited
|
1083
1052
|
process_insert(force: true)
|
@@ -1086,26 +1055,17 @@ class Reline::LineEditor
|
|
1086
1055
|
modified
|
1087
1056
|
end
|
1088
1057
|
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1058
|
+
MAX_UNDO_REDO_HISTORY_SIZE = 100
|
1059
|
+
def push_undo_redo(modified)
|
1060
|
+
if modified
|
1061
|
+
@undo_redo_history = @undo_redo_history[0..@undo_redo_index]
|
1062
|
+
@undo_redo_history.push([@buffer_of_lines.dup, @byte_pointer, @line_index])
|
1063
|
+
if @undo_redo_history.size > MAX_UNDO_REDO_HISTORY_SIZE
|
1064
|
+
@undo_redo_history.shift
|
1065
|
+
end
|
1066
|
+
@undo_redo_index = @undo_redo_history.size - 1
|
1096
1067
|
else
|
1097
|
-
@
|
1098
|
-
@input_lines_position += 1
|
1099
|
-
@input_lines.push([@buffer_of_lines.dup, @byte_pointer, @line_index])
|
1100
|
-
end
|
1101
|
-
trim_input_lines
|
1102
|
-
end
|
1103
|
-
|
1104
|
-
MAX_INPUT_LINES = 100
|
1105
|
-
def trim_input_lines
|
1106
|
-
if @input_lines.size > MAX_INPUT_LINES
|
1107
|
-
@input_lines.shift
|
1108
|
-
@input_lines_position -= 1
|
1068
|
+
@undo_redo_history[@undo_redo_index] = [@buffer_of_lines.dup, @byte_pointer, @line_index]
|
1109
1069
|
end
|
1110
1070
|
end
|
1111
1071
|
|
@@ -1188,7 +1148,7 @@ class Reline::LineEditor
|
|
1188
1148
|
quote_characters = Reline.completer_quote_characters
|
1189
1149
|
before = current_line.byteslice(0, @byte_pointer).grapheme_clusters
|
1190
1150
|
quote = nil
|
1191
|
-
#
|
1151
|
+
# Calculate closing quote when cursor is at the end of the line
|
1192
1152
|
if current_line.bytesize == @byte_pointer && !quote_characters.empty?
|
1193
1153
|
escaped = false
|
1194
1154
|
before.each do |c|
|
@@ -1413,9 +1373,16 @@ class Reline::LineEditor
|
|
1413
1373
|
|
1414
1374
|
insert_text(str)
|
1415
1375
|
end
|
1416
|
-
alias_method :ed_digit, :ed_insert
|
1417
1376
|
alias_method :self_insert, :ed_insert
|
1418
1377
|
|
1378
|
+
private def ed_digit(key)
|
1379
|
+
if @vi_arg
|
1380
|
+
ed_argument_digit(key)
|
1381
|
+
else
|
1382
|
+
ed_insert(key)
|
1383
|
+
end
|
1384
|
+
end
|
1385
|
+
|
1419
1386
|
private def insert_raw_char(str, arg: 1)
|
1420
1387
|
arg.times do
|
1421
1388
|
if str == "\C-j" or str == "\C-m"
|
@@ -1461,7 +1428,14 @@ class Reline::LineEditor
|
|
1461
1428
|
@byte_pointer = 0
|
1462
1429
|
end
|
1463
1430
|
alias_method :beginning_of_line, :ed_move_to_beg
|
1464
|
-
|
1431
|
+
|
1432
|
+
private def vi_zero(key)
|
1433
|
+
if @vi_arg
|
1434
|
+
ed_argument_digit(key)
|
1435
|
+
else
|
1436
|
+
ed_move_to_beg(key)
|
1437
|
+
end
|
1438
|
+
end
|
1465
1439
|
|
1466
1440
|
private def ed_move_to_end(key)
|
1467
1441
|
@byte_pointer = current_line.bytesize
|
@@ -1691,17 +1665,10 @@ class Reline::LineEditor
|
|
1691
1665
|
finish
|
1692
1666
|
end
|
1693
1667
|
else
|
1694
|
-
if @line_index ==
|
1695
|
-
if confirm_multiline_termination
|
1696
|
-
finish
|
1697
|
-
else
|
1698
|
-
key_newline(key)
|
1699
|
-
end
|
1700
|
-
else
|
1701
|
-
# should check confirm_multiline_termination to finish?
|
1702
|
-
@line_index = @buffer_of_lines.size - 1
|
1703
|
-
@byte_pointer = current_line.bytesize
|
1668
|
+
if @line_index == @buffer_of_lines.size - 1 && confirm_multiline_termination
|
1704
1669
|
finish
|
1670
|
+
else
|
1671
|
+
key_newline(key)
|
1705
1672
|
end
|
1706
1673
|
end
|
1707
1674
|
else
|
@@ -1709,6 +1676,11 @@ class Reline::LineEditor
|
|
1709
1676
|
end
|
1710
1677
|
end
|
1711
1678
|
|
1679
|
+
private def ed_force_submit(_key)
|
1680
|
+
process_insert(force: true)
|
1681
|
+
finish
|
1682
|
+
end
|
1683
|
+
|
1712
1684
|
private def em_delete_prev_char(key, arg: 1)
|
1713
1685
|
arg.times do
|
1714
1686
|
if @byte_pointer == 0 and @line_index > 0
|
@@ -2351,10 +2323,10 @@ class Reline::LineEditor
|
|
2351
2323
|
|
2352
2324
|
private def move_undo_redo(direction)
|
2353
2325
|
@restoring = true
|
2354
|
-
return unless (0..@
|
2326
|
+
return unless (0..@undo_redo_history.size - 1).cover?(@undo_redo_index + direction)
|
2355
2327
|
|
2356
|
-
@
|
2357
|
-
buffer_of_lines, byte_pointer, line_index = @
|
2328
|
+
@undo_redo_index += direction
|
2329
|
+
buffer_of_lines, byte_pointer, line_index = @undo_redo_history[@undo_redo_index]
|
2358
2330
|
@buffer_of_lines = buffer_of_lines.dup
|
2359
2331
|
@line_index = line_index
|
2360
2332
|
@byte_pointer = byte_pointer
|
@@ -1,6 +1,6 @@
|
|
1
1
|
class Reline::Unicode::EastAsianWidth
|
2
2
|
# This is based on EastAsianWidth.txt
|
3
|
-
# UNICODE_VERSION = '
|
3
|
+
# UNICODE_VERSION = '16.0.0'
|
4
4
|
|
5
5
|
CHUNK_LAST, CHUNK_WIDTH = [
|
6
6
|
[0x1f, 2],
|
@@ -174,7 +174,7 @@ class Reline::Unicode::EastAsianWidth
|
|
174
174
|
[0x82d, 0],
|
175
175
|
[0x858, 1],
|
176
176
|
[0x85b, 0],
|
177
|
-
[
|
177
|
+
[0x896, 1],
|
178
178
|
[0x89f, 0],
|
179
179
|
[0x8c9, 1],
|
180
180
|
[0x8e1, 0],
|
@@ -646,6 +646,8 @@ class Reline::Unicode::EastAsianWidth
|
|
646
646
|
[0x261c, -1],
|
647
647
|
[0x261d, 1],
|
648
648
|
[0x261e, -1],
|
649
|
+
[0x262f, 1],
|
650
|
+
[0x2637, 2],
|
649
651
|
[0x263f, 1],
|
650
652
|
[0x2640, -1],
|
651
653
|
[0x2641, 1],
|
@@ -664,6 +666,8 @@ class Reline::Unicode::EastAsianWidth
|
|
664
666
|
[0x266f, -1],
|
665
667
|
[0x267e, 1],
|
666
668
|
[0x267f, 2],
|
669
|
+
[0x2689, 1],
|
670
|
+
[0x268f, 2],
|
667
671
|
[0x2692, 1],
|
668
672
|
[0x2693, 2],
|
669
673
|
[0x269d, 1],
|
@@ -753,14 +757,12 @@ class Reline::Unicode::EastAsianWidth
|
|
753
757
|
[0x3130, 1],
|
754
758
|
[0x318e, 2],
|
755
759
|
[0x318f, 1],
|
756
|
-
[
|
760
|
+
[0x31e5, 2],
|
757
761
|
[0x31ee, 1],
|
758
762
|
[0x321e, 2],
|
759
763
|
[0x321f, 1],
|
760
764
|
[0x3247, 2],
|
761
765
|
[0x324f, -1],
|
762
|
-
[0x4dbf, 2],
|
763
|
-
[0x4dff, 1],
|
764
766
|
[0xa48c, 2],
|
765
767
|
[0xa48f, 1],
|
766
768
|
[0xa4c6, 2],
|
@@ -879,9 +881,11 @@ class Reline::Unicode::EastAsianWidth
|
|
879
881
|
[0x10ae6, 0],
|
880
882
|
[0x10d23, 1],
|
881
883
|
[0x10d27, 0],
|
884
|
+
[0x10d68, 1],
|
885
|
+
[0x10d6d, 0],
|
882
886
|
[0x10eaa, 1],
|
883
887
|
[0x10eac, 0],
|
884
|
-
[
|
888
|
+
[0x10efb, 1],
|
885
889
|
[0x10eff, 0],
|
886
890
|
[0x10f45, 1],
|
887
891
|
[0x10f50, 0],
|
@@ -943,6 +947,16 @@ class Reline::Unicode::EastAsianWidth
|
|
943
947
|
[0x1136c, 0],
|
944
948
|
[0x1136f, 1],
|
945
949
|
[0x11374, 0],
|
950
|
+
[0x113ba, 1],
|
951
|
+
[0x113c0, 0],
|
952
|
+
[0x113cd, 1],
|
953
|
+
[0x113ce, 0],
|
954
|
+
[0x113cf, 1],
|
955
|
+
[0x113d0, 0],
|
956
|
+
[0x113d1, 1],
|
957
|
+
[0x113d2, 0],
|
958
|
+
[0x113e0, 1],
|
959
|
+
[0x113e2, 0],
|
946
960
|
[0x11437, 1],
|
947
961
|
[0x1143f, 0],
|
948
962
|
[0x11441, 1],
|
@@ -982,6 +996,8 @@ class Reline::Unicode::EastAsianWidth
|
|
982
996
|
[0x116b6, 1],
|
983
997
|
[0x116b7, 0],
|
984
998
|
[0x1171c, 1],
|
999
|
+
[0x1171d, 0],
|
1000
|
+
[0x1171e, 1],
|
985
1001
|
[0x1171f, 0],
|
986
1002
|
[0x11721, 1],
|
987
1003
|
[0x11725, 0],
|
@@ -1059,10 +1075,16 @@ class Reline::Unicode::EastAsianWidth
|
|
1059
1075
|
[0x11f40, 0],
|
1060
1076
|
[0x11f41, 1],
|
1061
1077
|
[0x11f42, 0],
|
1078
|
+
[0x11f59, 1],
|
1079
|
+
[0x11f5a, 0],
|
1062
1080
|
[0x1343f, 1],
|
1063
1081
|
[0x13440, 0],
|
1064
1082
|
[0x13446, 1],
|
1065
1083
|
[0x13455, 0],
|
1084
|
+
[0x1611d, 1],
|
1085
|
+
[0x16129, 0],
|
1086
|
+
[0x1612c, 1],
|
1087
|
+
[0x1612f, 0],
|
1066
1088
|
[0x16aef, 1],
|
1067
1089
|
[0x16af4, 0],
|
1068
1090
|
[0x16b2f, 1],
|
@@ -1080,7 +1102,7 @@ class Reline::Unicode::EastAsianWidth
|
|
1080
1102
|
[0x187f7, 2],
|
1081
1103
|
[0x187ff, 1],
|
1082
1104
|
[0x18cd5, 2],
|
1083
|
-
[
|
1105
|
+
[0x18cfe, 1],
|
1084
1106
|
[0x18d08, 2],
|
1085
1107
|
[0x1afef, 1],
|
1086
1108
|
[0x1aff3, 2],
|
@@ -1116,6 +1138,10 @@ class Reline::Unicode::EastAsianWidth
|
|
1116
1138
|
[0x1d1ad, 0],
|
1117
1139
|
[0x1d241, 1],
|
1118
1140
|
[0x1d244, 0],
|
1141
|
+
[0x1d2ff, 1],
|
1142
|
+
[0x1d356, 2],
|
1143
|
+
[0x1d35f, 1],
|
1144
|
+
[0x1d376, 2],
|
1119
1145
|
[0x1d9ff, 1],
|
1120
1146
|
[0x1da36, 0],
|
1121
1147
|
[0x1da3a, 1],
|
@@ -1148,6 +1174,8 @@ class Reline::Unicode::EastAsianWidth
|
|
1148
1174
|
[0x1e2ef, 0],
|
1149
1175
|
[0x1e4eb, 1],
|
1150
1176
|
[0x1e4ef, 0],
|
1177
|
+
[0x1e5ed, 1],
|
1178
|
+
[0x1e5ef, 0],
|
1151
1179
|
[0x1e8cf, 1],
|
1152
1180
|
[0x1e8d6, 0],
|
1153
1181
|
[0x1e943, 1],
|
@@ -1241,15 +1269,13 @@ class Reline::Unicode::EastAsianWidth
|
|
1241
1269
|
[0x1fa6f, 1],
|
1242
1270
|
[0x1fa7c, 2],
|
1243
1271
|
[0x1fa7f, 1],
|
1244
|
-
[
|
1245
|
-
[
|
1246
|
-
[
|
1247
|
-
[0x1fabe, 1],
|
1248
|
-
[0x1fac5, 2],
|
1272
|
+
[0x1fa89, 2],
|
1273
|
+
[0x1fa8e, 1],
|
1274
|
+
[0x1fac6, 2],
|
1249
1275
|
[0x1facd, 1],
|
1250
|
-
[
|
1251
|
-
[
|
1252
|
-
[
|
1276
|
+
[0x1fadc, 2],
|
1277
|
+
[0x1fade, 1],
|
1278
|
+
[0x1fae9, 2],
|
1253
1279
|
[0x1faef, 1],
|
1254
1280
|
[0x1faf8, 2],
|
1255
1281
|
[0x1ffff, 1],
|
data/lib/reline/unicode.rb
CHANGED
@@ -28,12 +28,12 @@ class Reline::Unicode
|
|
28
28
|
0x19 => '^Y',
|
29
29
|
0x1A => '^Z', # C-z
|
30
30
|
0x1B => '^[', # C-[ C-3
|
31
|
+
0x1C => '^\\', # C-\
|
31
32
|
0x1D => '^]', # C-]
|
32
33
|
0x1E => '^^', # C-~ C-6
|
33
34
|
0x1F => '^_', # C-_ C-7
|
34
35
|
0x7F => '^?', # C-? C-8
|
35
36
|
}
|
36
|
-
EscapedChars = EscapedPairs.keys.map(&:chr)
|
37
37
|
|
38
38
|
NON_PRINTING_START = "\1"
|
39
39
|
NON_PRINTING_END = "\2"
|
@@ -61,7 +61,7 @@ class Reline::Unicode
|
|
61
61
|
|
62
62
|
# This code is essentially doing the same thing as
|
63
63
|
# `str.encode(utf8, **replace_options).encode(encoding, **replace_options)`
|
64
|
-
# but also avoids
|
64
|
+
# but also avoids unnecessary irreversible encoding conversion.
|
65
65
|
converted.gsub(/\X/) do |c|
|
66
66
|
c.encode(Encoding::UTF_8)
|
67
67
|
c
|
data/lib/reline/version.rb
CHANGED
data/lib/reline.rb
CHANGED
@@ -12,10 +12,10 @@ require 'rbconfig'
|
|
12
12
|
|
13
13
|
module Reline
|
14
14
|
# NOTE: For making compatible with the rb-readline gem
|
15
|
-
FILENAME_COMPLETION_PROC = nil
|
16
|
-
USERNAME_COMPLETION_PROC = nil
|
15
|
+
FILENAME_COMPLETION_PROC = nil # :nodoc:
|
16
|
+
USERNAME_COMPLETION_PROC = nil # :nodoc:
|
17
17
|
|
18
|
-
class ConfigEncodingConversionError < StandardError; end
|
18
|
+
class ConfigEncodingConversionError < StandardError; end # :nodoc:
|
19
19
|
|
20
20
|
# EOF key: { char: nil, method_symbol: nil }
|
21
21
|
# Other key: { char: String, method_symbol: Symbol }
|
@@ -24,8 +24,8 @@ module Reline
|
|
24
24
|
def match?(sym)
|
25
25
|
method_symbol && method_symbol == sym
|
26
26
|
end
|
27
|
-
end
|
28
|
-
CursorPos = Struct.new(:x, :y)
|
27
|
+
end # :nodoc:
|
28
|
+
CursorPos = Struct.new(:x, :y) # :nodoc:
|
29
29
|
DialogRenderInfo = Struct.new(
|
30
30
|
:pos,
|
31
31
|
:contents,
|
@@ -35,7 +35,7 @@ module Reline
|
|
35
35
|
:height,
|
36
36
|
:scrollbar,
|
37
37
|
keyword_init: true
|
38
|
-
)
|
38
|
+
) # :nodoc:
|
39
39
|
|
40
40
|
class Core
|
41
41
|
ATTR_READER_NAMES = %i(
|
@@ -244,8 +244,8 @@ module Reline
|
|
244
244
|
height: [15, preferred_dialog_height].min,
|
245
245
|
face: :completion_dialog
|
246
246
|
)
|
247
|
-
}
|
248
|
-
Reline::DEFAULT_DIALOG_CONTEXT = Array.new
|
247
|
+
} # :nodoc:
|
248
|
+
Reline::DEFAULT_DIALOG_CONTEXT = Array.new # :nodoc:
|
249
249
|
|
250
250
|
def readmultiline(prompt = '', add_hist = false, &confirm_multiline_termination)
|
251
251
|
@mutex.synchronize do
|
@@ -341,7 +341,6 @@ module Reline
|
|
341
341
|
line_editor.set_signal_handlers
|
342
342
|
loop do
|
343
343
|
read_io(config.keyseq_timeout) { |inputs|
|
344
|
-
line_editor.set_pasting_state(io_gate.in_pasting?)
|
345
344
|
inputs.each do |key|
|
346
345
|
case key.method_symbol
|
347
346
|
when :bracketed_paste_start
|
@@ -350,6 +349,7 @@ module Reline
|
|
350
349
|
when :quoted_insert, :ed_quoted_insert
|
351
350
|
key = Reline::Key.new(io_gate.read_single_char(config.keyseq_timeout), :insert_raw_char)
|
352
351
|
end
|
352
|
+
line_editor.set_pasting_state(io_gate.in_pasting?)
|
353
353
|
line_editor.update(key)
|
354
354
|
end
|
355
355
|
}
|
@@ -357,7 +357,6 @@ module Reline
|
|
357
357
|
line_editor.render_finished
|
358
358
|
break
|
359
359
|
else
|
360
|
-
line_editor.set_pasting_state(io_gate.in_pasting?)
|
361
360
|
line_editor.rerender
|
362
361
|
end
|
363
362
|
end
|
@@ -440,6 +439,17 @@ module Reline
|
|
440
439
|
}
|
441
440
|
def_single_delegators :core, :input=, :output=
|
442
441
|
def_single_delegators :core, :vi_editing_mode, :emacs_editing_mode
|
442
|
+
|
443
|
+
##
|
444
|
+
# :singleton-method: readmultiline
|
445
|
+
# :call-seq:
|
446
|
+
# readmultiline(prompt = '', add_hist = false, &confirm_multiline_termination) -> string or nil
|
447
|
+
def_single_delegators :core, :readmultiline
|
448
|
+
|
449
|
+
##
|
450
|
+
# :singleton-method: readline
|
451
|
+
# :call-seq:
|
452
|
+
# readline(prompt = '', add_hist = false) -> string or nil
|
443
453
|
def_single_delegators :core, :readline
|
444
454
|
def_single_delegators :core, :completion_case_fold, :completion_case_fold=
|
445
455
|
def_single_delegators :core, :completion_quote_character
|
@@ -475,11 +485,10 @@ module Reline
|
|
475
485
|
def_single_delegators :core, :dialog_proc
|
476
486
|
def_single_delegators :core, :autocompletion, :autocompletion=
|
477
487
|
|
478
|
-
def_single_delegators :core, :readmultiline
|
479
488
|
def_instance_delegators self, :readmultiline
|
480
489
|
private :readmultiline
|
481
490
|
|
482
|
-
def self.encoding_system_needs
|
491
|
+
def self.encoding_system_needs # :nodoc:
|
483
492
|
self.core.encoding
|
484
493
|
end
|
485
494
|
|
@@ -512,7 +521,7 @@ end
|
|
512
521
|
Reline::IOGate = Reline::IO.decide_io_gate
|
513
522
|
|
514
523
|
# Deprecated
|
515
|
-
Reline::GeneralIO = Reline::Dumb.new
|
524
|
+
Reline::GeneralIO = Reline::Dumb.new # :nodoc:
|
516
525
|
|
517
526
|
Reline::Face.load_initial_configs
|
518
527
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: reline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- aycabta
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-04-04 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: io-console
|
@@ -62,7 +61,6 @@ metadata:
|
|
62
61
|
bug_tracker_uri: https://github.com/ruby/reline/issues
|
63
62
|
changelog_uri: https://github.com/ruby/reline/releases
|
64
63
|
source_code_uri: https://github.com/ruby/reline
|
65
|
-
post_install_message:
|
66
64
|
rdoc_options: []
|
67
65
|
require_paths:
|
68
66
|
- lib
|
@@ -77,8 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
77
75
|
- !ruby/object:Gem::Version
|
78
76
|
version: '0'
|
79
77
|
requirements: []
|
80
|
-
rubygems_version: 3.
|
81
|
-
signing_key:
|
78
|
+
rubygems_version: 3.6.3
|
82
79
|
specification_version: 4
|
83
80
|
summary: Alternative GNU Readline or Editline implementation by pure Ruby.
|
84
81
|
test_files: []
|