summaryrefslogtreecommitdiff
path: root/src/input_handler.hh
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-10-28 10:07:28 +0800
committerMaxime Coste <mawww@kakoune.org>2017-10-28 10:07:28 +0800
commit9a449a33446f1c52bb02b4bea13bbc86d5742f2d (patch)
tree3d1527c7a6aeab12ef010c94687a220ca0e31347 /src/input_handler.hh
parent706202218700c989b760942170515c7f3757290b (diff)
Display the fallback value in prompts
Fixes #1654
Diffstat (limited to 'src/input_handler.hh')
-rw-r--r--src/input_handler.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/input_handler.hh b/src/input_handler.hh
index e4cad6d0..e184a8fa 100644
--- a/src/input_handler.hh
+++ b/src/input_handler.hh
@@ -33,7 +33,8 @@ enum class PromptFlags
{
None = 0,
Password = 1 << 0,
- DropHistoryEntriesWithBlankPrefix = 1 << 1
+ DropHistoryEntriesWithBlankPrefix = 1 << 1,
+ InactiveInitString = 1 << 2,
};
constexpr bool with_bit_ops(Meta::Type<PromptFlags>) { return true; }