summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty
diff options
context:
space:
mode:
author cracyc <cracyc@users.noreply.github.com>2016-11-06 21:36:26 -0600
committer cracyc <cracyc@users.noreply.github.com>2016-11-06 21:36:26 -0600
commit65c3796e3370f63251c95b8149d1827cf83a09f6 (patch)
tree99f359a14119208e5ab4a7395f72ae38db5d788e /3rdparty
parentfeca994e2ff4d759451140c0c5af35dd2be82de1 (diff)
plugins/console: further improve completions by removing break chars from linenoise that hide the full type (nw)
Diffstat (limited to '3rdparty')
-rw-r--r--3rdparty/linenoise-ng/src/linenoise.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/linenoise-ng/src/linenoise.cpp b/3rdparty/linenoise-ng/src/linenoise.cpp
index 38ef90bd63b..678a6bba78b 100644
--- a/3rdparty/linenoise-ng/src/linenoise.cpp
+++ b/3rdparty/linenoise-ng/src/linenoise.cpp
@@ -1883,7 +1883,7 @@ static int cleanupCtrl(int c) {
}
// break characters that may precede items to be completed
-static const char breakChars[] = " =+-/\\*?\"'`&<>;|@{([])}";
+static const char breakChars[] = " =+-/\\*?\"'`&<>;|@{}";
// maximum number of completions to display without asking
static const size_t completionCountCutoff = 100;