summaryrefslogtreecommitdiff
path: root/src/input_handler.cc
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2018-02-28 15:05:38 +1100
committerMaxime Coste <mawww@kakoune.org>2018-02-28 15:05:38 +1100
commitd498a059c44ccfb501fcd9c2ff68c8ebd3885cff (patch)
tree2ecacac889d00d0983129072090f9c674404fa20 /src/input_handler.cc
parentbebc81ebe1972eb33b89917bd520af2055d1fb6d (diff)
Prompt: update completions after inserting register or raw ke
Diffstat (limited to 'src/input_handler.cc')
-rw-r--r--src/input_handler.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/input_handler.cc b/src/input_handler.cc
index 752b642c..a891ccc8 100644
--- a/src/input_handler.cc
+++ b/src/input_handler.cc
@@ -768,6 +768,7 @@ public:
display();
m_line_changed = true;
+ m_refresh_completion_pending = true;
}, "enter register name", register_doc);
display();
return;
@@ -781,6 +782,7 @@ public:
m_line_editor.insert(*cp);
display();
m_line_changed = true;
+ m_refresh_completion_pending = true;
}
}, "raw insert", "enter key to insert");
display();