]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.257
- new: 7.3.270
[packages/vim.git] / 7.3.257
CommitLineData
615e00aa 1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.257
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.257
11Problem: Not all completions are available to user commands.
12Solution: Add "color", "compiler", "file_in_path" and "locale". (Dominique
13 Pelle)
14Files: src/ex_docmd.c, runtime/doc/map.txt
15
16
17*** ../vim-7.3.256/src/ex_docmd.c 2011-07-20 15:04:52.000000000 +0200
18--- src/ex_docmd.c 2011-07-20 16:10:28.000000000 +0200
19***************
20*** 5297,5303 ****
21--- 5297,5305 ----
22 {
23 {EXPAND_AUGROUP, "augroup"},
24 {EXPAND_BUFFERS, "buffer"},
25+ {EXPAND_COLORS, "color"},
26 {EXPAND_COMMANDS, "command"},
27+ {EXPAND_COMPILER, "compiler"},
28 #if defined(FEAT_CSCOPE)
29 {EXPAND_CSCOPE, "cscope"},
30 #endif
31***************
32*** 5310,5319 ****
33--- 5312,5326 ----
34 {EXPAND_EVENTS, "event"},
35 {EXPAND_EXPRESSION, "expression"},
36 {EXPAND_FILES, "file"},
37+ {EXPAND_FILES_IN_PATH, "file_in_path"},
38 {EXPAND_FILETYPE, "filetype"},
39 {EXPAND_FUNCTIONS, "function"},
40 {EXPAND_HELP, "help"},
41 {EXPAND_HIGHLIGHT, "highlight"},
42+ #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
43+ && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
44+ {EXPAND_LOCALES, "locale"},
45+ #endif
46 {EXPAND_MAPPINGS, "mapping"},
47 {EXPAND_MENUS, "menu"},
48 {EXPAND_OWNSYNTAX, "syntax"},
49*** ../vim-7.3.256/runtime/doc/map.txt 2011-05-19 17:25:36.000000000 +0200
50--- runtime/doc/map.txt 2011-07-20 16:10:28.000000000 +0200
51***************
52*** 1202,1221 ****
53--- 1211,1236 ----
54
55 -complete=augroup autocmd groups
56 -complete=buffer buffer names
57+ -complete=color color schemes
58 -complete=command Ex command (and arguments)
59+ -complete=compiler compilers
60+ -complete=cscope |:cscope| suboptions
61 -complete=dir directory names
62 -complete=environment environment variable names
63 -complete=event autocommand events
64 -complete=expression Vim expression
65 -complete=file file and directory names
66+ -complete=file_in_path file and directory names in |'path'|
67 -complete=filetype filetype names |'filetype'|
68 -complete=function function name
69 -complete=help help subjects
70 -complete=highlight highlight groups
71+ -complete=locale locale names (as output of locale -a)
72 -complete=mapping mapping name
73 -complete=menu menus
74 -complete=option options
75 -complete=shellcmd Shell command
76+ -complete=sign |:sign| suboptions
77 -complete=syntax syntax file names |'syntax'|
78 -complete=tag tags
79 -complete=tag_listfiles tags, file names are shown when CTRL-D is hit
80*** ../vim-7.3.256/src/version.c 2011-07-20 15:09:38.000000000 +0200
81--- src/version.c 2011-07-20 16:30:31.000000000 +0200
82***************
83*** 711,712 ****
84--- 711,714 ----
85 { /* Add new patch number below this line */
86+ /**/
87+ 257,
88 /**/
89
90--
91I have to exercise early in the morning before my brain
92figures out what I'm doing.
93
94 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
95/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
96\\\ an exciting new programming language -- http://www.Zimbu.org ///
97 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.047374 seconds and 4 git commands to generate.