Hi
Attached patch adds more command completions, allowing things like:
:echo input("col: ", "", "color")
:echo input("comp: ", "", "compiler")
:echo input("file in path: ", "", "file_in_path")
:echo input("loc: ", "", "locale")
Regards
-- Dominique
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
diff -r f43c2f39001f runtime/doc/map.txt
--- a/runtime/doc/map.txt Mon Jun 20 05:02:58 2011 +0200
+++ b/runtime/doc/map.txt Sat Jun 25 09:18:58 2011 +0200
@@ -1211,17 +1211,21 @@
-complete=augroup autocmd groups
-complete=buffer buffer names
+ -complete=color color schemes
-complete=command Ex command (and arguments)
+ -complete=compiler compilers
-complete=cscope |:cscope| suboptions
-complete=dir directory names
-complete=environment environment variable names
-complete=event autocommand events
-complete=expression Vim expression
-complete=file file and directory names
+ -complete=file_in_path file and directory names in |'path'|
-complete=filetype filetype names |'filetype'|
-complete=function function name
-complete=help help subjects
-complete=highlight highlight groups
+ -complete=locale locale names (as output of locale -a)
-complete=mapping mapping name
-complete=menu menus
-complete=option options
diff -r f43c2f39001f src/ex_docmd.c
--- a/src/ex_docmd.c Mon Jun 20 05:02:58 2011 +0200
+++ b/src/ex_docmd.c Sat Jun 25 09:18:58 2011 +0200
@@ -5297,7 +5297,9 @@
{
{EXPAND_AUGROUP, "augroup"},
{EXPAND_BUFFERS, "buffer"},
+ {EXPAND_COLORS, "color"},
{EXPAND_COMMANDS, "command"},
+ {EXPAND_COMPILER, "compiler"},
#if defined(FEAT_CSCOPE)
{EXPAND_CSCOPE, "cscope"},
#endif
@@ -5310,10 +5312,15 @@
{EXPAND_EVENTS, "event"},
{EXPAND_EXPRESSION, "expression"},
{EXPAND_FILES, "file"},
+ {EXPAND_FILES_IN_PATH, "file_in_path"},
{EXPAND_FILETYPE, "filetype"},
{EXPAND_FUNCTIONS, "function"},
{EXPAND_HELP, "help"},
{EXPAND_HIGHLIGHT, "highlight"},
+#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
+ && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
+ {EXPAND_LOCALES, "locale"},
+#endif
{EXPAND_MAPPINGS, "mapping"},
{EXPAND_MENUS, "menu"},
{EXPAND_OWNSYNTAX, "syntax"},