summaryrefslogtreecommitdiffstats
path: root/src/optionstr.c
diff options
context:
space:
mode:
authorYee Cheng Chin <ychin.git@gmail.com>2023-10-14 11:46:51 +0200
committerChristian Brabandt <cb@256bit.org>2023-10-14 11:46:51 +0200
commit989426be6e9ae23d2413943890206cbe15d9df38 (patch)
tree3931aedc70ed18a7e3ea0f735359995fb26d1ef5 /src/optionstr.c
parentbd734c3bead9e167eb6875f62cc06fab2379c422 (diff)
patch 9.0.2025: no cmdline completion for ++opt argsv9.0.2025
Problem: no cmdline completion for ++opt args Solution: Add cmdline completion for :e ++opt=arg and :terminal [++options] closes: #13319 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
Diffstat (limited to 'src/optionstr.c')
-rw-r--r--src/optionstr.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/optionstr.c b/src/optionstr.c
index 202e93e57d..8458f2a4a4 100644
--- a/src/optionstr.c
+++ b/src/optionstr.c
@@ -2105,6 +2105,19 @@ expand_set_fileformat(optexpand_T *args, int *numMatches, char_u ***matches)
}
/*
+ * Function given to ExpandGeneric() to obtain the possible arguments of the
+ * fileformat options.
+ */
+ char_u *
+get_fileformat_name(expand_T *xp UNUSED, int idx)
+{
+ if (idx >= (int)ARRAY_LENGTH(p_ff_values))
+ return NULL;
+
+ return (char_u*)p_ff_values[idx];
+}
+
+/*
* The 'fileformats' option is changed.
*/
char *