summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/reline.rb1
-rw-r--r--lib/reline/line_editor.rb6
2 files changed, 5 insertions, 2 deletions
diff --git a/lib/reline.rb b/lib/reline.rb
index c4c6b97d03..9a9f742909 100644
--- a/lib/reline.rb
+++ b/lib/reline.rb
@@ -212,6 +212,7 @@ module Reline
end
line_editor.output = output
line_editor.completion_proc = completion_proc
+ line_editor.completion_append_character = completion_append_character
line_editor.output_modifier_proc = output_modifier_proc
line_editor.prompt_proc = prompt_proc
line_editor.auto_indent_proc = auto_indent_proc
diff --git a/lib/reline/line_editor.rb b/lib/reline/line_editor.rb
index 9d8185ff00..7b67687400 100644
--- a/lib/reline/line_editor.rb
+++ b/lib/reline/line_editor.rb
@@ -10,6 +10,7 @@ class Reline::LineEditor
attr_reader :byte_pointer
attr_accessor :confirm_multiline_termination_proc
attr_accessor :completion_proc
+ attr_accessor :completion_append_character
attr_accessor :output_modifier_proc
attr_accessor :prompt_proc
attr_accessor :auto_indent_proc
@@ -58,6 +59,7 @@ class Reline::LineEditor
def initialize(config)
@config = config
+ @completion_append_character = ''
reset_variables
end
@@ -620,8 +622,8 @@ class Reline::LineEditor
@completion_state = CompletionState::MENU
end
if target < completed
- @line = preposing + completed + postposing
- line_to_pointer = preposing + completed
+ @line = preposing + completed + completion_append_character.to_s + postposing
+ line_to_pointer = preposing + completed + completion_append_character.to_s
@cursor_max = calculate_width(@line)
@cursor = calculate_width(line_to_pointer)
@byte_pointer = line_to_pointer.bytesize