diff options
author | aycabta <[email protected]> | 2021-12-16 10:19:52 +0900 |
---|---|---|
committer | git <[email protected]> | 2021-12-19 11:19:50 +0900 |
commit | 7159af3491763aeeaf7accec426ff228d7dbfa3b (patch) | |
tree | f4bc196b53a92f21f37bfe6715c526eab2caa704 /lib/reline/line_editor.rb | |
parent | f3e30b26c509c6dd707bc07c4a73fbac2576e9e2 (diff) |
[ruby/reline] Clear dialog in pasting
https://github.com/ruby/reline/commit/dabf5313e0
Diffstat (limited to 'lib/reline/line_editor.rb')
-rw-r--r-- | lib/reline/line_editor.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/reline/line_editor.rb b/lib/reline/line_editor.rb index 39e2b427bc..4fbed471c3 100644 --- a/lib/reline/line_editor.rb +++ b/lib/reline/line_editor.rb @@ -651,6 +651,7 @@ class Reline::LineEditor private def render_each_dialog(dialog, cursor_column) if @in_pasting + clear_each_dialog(dialog) dialog.contents = nil dialog.trap_key = nil return |