mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[ruby/reline] Drop prompt list cache when num of lines is changed
1959e22043
This commit is contained in:
parent
2910684c45
commit
37a574b527
2 changed files with 15 additions and 1 deletions
|
@ -50,6 +50,8 @@ class Reline::LineEditor
|
||||||
CompletionJourneyData = Struct.new('CompletionJourneyData', :preposing, :postposing, :list, :pointer)
|
CompletionJourneyData = Struct.new('CompletionJourneyData', :preposing, :postposing, :list, :pointer)
|
||||||
MenuInfo = Struct.new('MenuInfo', :target, :list)
|
MenuInfo = Struct.new('MenuInfo', :target, :list)
|
||||||
|
|
||||||
|
PROMPT_LIST_CACHE_TIMEOUT = 0.5
|
||||||
|
|
||||||
def initialize(config, encoding)
|
def initialize(config, encoding)
|
||||||
@config = config
|
@config = config
|
||||||
@completion_append_character = ''
|
@completion_append_character = ''
|
||||||
|
@ -78,7 +80,7 @@ class Reline::LineEditor
|
||||||
end
|
end
|
||||||
return [prompt, calculate_width(prompt, true), [prompt] * buffer.size] if simplified_rendering?
|
return [prompt, calculate_width(prompt, true), [prompt] * buffer.size] if simplified_rendering?
|
||||||
if @prompt_proc
|
if @prompt_proc
|
||||||
if @cached_prompt_list and Time.now.to_f < (@prompt_cache_time + 0.5)
|
if @cached_prompt_list and Time.now.to_f < (@prompt_cache_time + PROMPT_LIST_CACHE_TIMEOUT) and buffer.size == @cached_prompt_list.size
|
||||||
prompt_list = @cached_prompt_list
|
prompt_list = @cached_prompt_list
|
||||||
else
|
else
|
||||||
prompt_list = @cached_prompt_list = @prompt_proc.(buffer)
|
prompt_list = @cached_prompt_list = @prompt_proc.(buffer)
|
||||||
|
|
|
@ -398,6 +398,18 @@ begin
|
||||||
EOC
|
EOC
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_prompt_list_caching
|
||||||
|
start_terminal(5, 30, %W{ruby -I#{@pwd}/lib #{@pwd}/bin/multiline_repl --prompt-list-cache-timeout 10 --dynamic-prompt}, startup_message: 'Multiline REPL.')
|
||||||
|
write("def hoge\n 3\nend")
|
||||||
|
close
|
||||||
|
assert_screen(<<~EOC)
|
||||||
|
Multiline REPL.
|
||||||
|
[0000]> def hoge
|
||||||
|
[0001]> 3
|
||||||
|
[0002]> end
|
||||||
|
EOC
|
||||||
|
end
|
||||||
|
|
||||||
private def write_inputrc(content)
|
private def write_inputrc(content)
|
||||||
File.open(@inputrc_file, 'w') do |f|
|
File.open(@inputrc_file, 'w') do |f|
|
||||||
f.write content
|
f.write content
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue