Skip to content

Commit 354e9e9

Browse files
committed
Updated runtime files.
1 parent 0152d3d commit 354e9e9

File tree

14 files changed

+258
-125
lines changed

14 files changed

+258
-125
lines changed

runtime/doc/cmdline.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*cmdline.txt* For Vim version 7.3. Last change: 2012 Jun 20
1+
*cmdline.txt* For Vim version 7.3. Last change: 2012 Oct 11
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -217,7 +217,7 @@ CTRL-\ e {expr} *c_CTRL-\_e*
217217
:return cmd
218218
:endfunc
219219
< This doesn't work recursively, thus not when already editing
220-
an expression.
220+
an expression. But it is possible to use in a mapping.
221221

222222
*c_CTRL-Y*
223223
CTRL-Y When there is a modeless selection, copy the selection into

runtime/doc/eval.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim version 7.3. Last change: 2012 Sep 05
1+
*eval.txt* For Vim version 7.3. Last change: 2012 Oct 21
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -91,8 +91,8 @@ For boolean operators Numbers are used. Zero is FALSE, non-zero is TRUE.
9191
Note that in the command >
9292
:if "foo"
9393
"foo" is converted to 0, which means FALSE. To test for a non-empty string,
94-
use strlen(): >
95-
:if strlen("foo")
94+
use empty(): >
95+
:if !empty("foo")
9696
< *E745* *E728* *E703* *E729* *E730* *E731*
9797
List, Dictionary and Funcref types are not automatically converted.
9898

runtime/doc/mbyte.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*mbyte.txt* For Vim version 7.3. Last change: 2012 Jun 06
1+
*mbyte.txt* For Vim version 7.3. Last change: 2012 Oct 06
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar et al.
@@ -1085,6 +1085,13 @@ Since the mapping is defined with |:lnoremap| the resulting quote will not be
10851085
used for the start of another character.
10861086
The "accents" keymap uses this. *keymap-accents*
10871087

1088+
The first column can also be in |<>| form:
1089+
<C-c> Ctrl-C
1090+
<A-c> Alt-c
1091+
<A-C> Alt-C
1092+
Note that the Alt mappings may not work, depending on your keyboard and
1093+
terminal.
1094+
10881095
Although it's possible to have more than one character in the second column,
10891096
this is unusual. But you can use various ways to specify the character: >
10901097
A a literal character

runtime/doc/options.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*options.txt* For Vim version 7.3. Last change: 2012 Aug 15
1+
*options.txt* For Vim version 7.3. Last change: 2012 Oct 21
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -756,7 +756,7 @@ A jump table for the options with a short description can be found at |Q_op|.
756756
feature}
757757
When on and 'termbidi' is off, the required visual character
758758
corrections that need to take place for displaying the Arabic language
759-
take affect. Shaping, in essence, gets enabled; the term is a broad
759+
take effect. Shaping, in essence, gets enabled; the term is a broad
760760
one which encompasses:
761761
a) the changing/morphing of characters based on their location
762762
within a word (initial, medial, final and stand-alone).
@@ -6119,7 +6119,8 @@ A jump table for the options with a short description can be found at |Q_op|.
61196119
local to buffer
61206120
Number of spaces to use for each step of (auto)indent. Used for
61216121
|'cindent'|, |>>|, |<<|, etc.
6122-
When zero the 'ts' value will be used.
6122+
When zero the 'ts' value will be used. Use the |shiftwidth()|
6123+
function to get the effective shiftwidth value.
61236124

61246125
*'shortmess'* *'shm'*
61256126
'shortmess' 'shm' string (Vim default "filnxtToO", Vi default: "",
@@ -6383,6 +6384,7 @@ A jump table for the options with a short description can be found at |Q_op|.
63836384
of 8, while being able to edit like it is set to 'sts'. However,
63846385
commands like "x" still work on the actual characters.
63856386
When 'sts' is zero, this feature is off.
6387+
When 'sts' is negative, the value of 'shiftwidth' is used.
63866388
'softtabstop' is set to 0 when the 'paste' option is set.
63876389
See also |ins-expandtab|. When 'expandtab' is not set, the number of
63886390
spaces is minimized by using <Tab>s.

runtime/doc/tags

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7550,6 +7550,7 @@ shell_error-variable eval.txt /*shell_error-variable*
75507550
shellescape() eval.txt /*shellescape()*
75517551
shift intro.txt /*shift*
75527552
shift-left-right change.txt /*shift-left-right*
7553+
shiftwidth() eval.txt /*shiftwidth()*
75537554
short-name-changed version4.txt /*short-name-changed*
75547555
showing-menus gui.txt /*showing-menus*
75557556
sign-commands sign.txt /*sign-commands*

runtime/doc/todo.txt

Lines changed: 24 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*todo.txt* For Vim version 7.3. Last change: 2012 Oct 04
1+
*todo.txt* For Vim version 7.3. Last change: 2012 Oct 21
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -34,50 +34,39 @@ not be repeated below, unless there is extra information.
3434
*known-bugs*
3535
-------------------- Known bugs and current work -----------------------
3636

37-
Patch with Test for patch 7.3.673 (Christian Brabandt, 2012 Oct 3)
38-
39-
Patch for C-\ e when editing expression. (Christian Brabandt, 2012 Oct 3)
40-
Correction by ZyX.
41-
4237
Go through more coverity reports.
4338

4439
Discussion about canonicalization of Hebrew. (Ron Aaron, 2011 April 10)
4540

4641
Checking runtime scripts: Thilo Six, 2012 Jun 6.
4742

48-
Crash with 1023 byte directory name. (Danek Duvall, 2012 Sep 19)
49-
50-
Patch for wrong text in balloon, Issue 58. (Dominique Pelle)
51-
52-
Patch for menu.vim to correct message about adding spell file.
53-
(Jiri Sedlak, 2012 Sep 24)
54-
5543
GTK: problem with 'L' in 'guioptions' changing the window width.
5644
(Aaron Cornelius, 2012 Feb 6)
5745

58-
Patch for SGR mouse with older xterm. (Hayaki Saito, 2012 Sep 19)
46+
Patch to fix undofile hash computed when not necessary. (Christian Brabandt,
47+
2012 Oct 16, update Oct 18)
5948

60-
Patch for crash with an autocommand. (ZyX, 2012 Sep 6, second one)
61-
Also patch for garbage, but use vim_strncpy() instead.
62-
63-
Patch to fix crash on Win32 when setting 'encoding'. (Jiri Sedlak, 2012 Sep
64-
12)
65-
66-
Patch to update example using empty(). (ZyX, 2012 Sep 13)
49+
Patch to fix repeating "cgn". (Christian Brabandt, 2012 Oct 16)
50+
Update Oct 17.
6751

6852
Javascript file where indent gets stuck on: GalaxyMaster, 2012 May 3.
6953

7054
Updated French and Esperanto files. (Dominique Pelle, 2012 Aug 19)
7155

7256
When showing diffs filler lines may be hidden at first.
73-
Patch by Christian Brabandt, 2012 Sep 6.
57+
Patch by Christian Brabandt, 2012 Sep 6. Update Oct 11.
7458

7559
Patch for memory leaks on exception. (ZyX, 2012 Sep 9)
7660

7761
The CompleteDone autocommand needs some info passed to it:
7862
- The word that was selected (empty if abandoned complete)
7963
- Type of completion: tag, omnifunc, user func.
8064

65+
Unwanted file name escaping: ":echo input('file:' , '', 'file')"
66+
And use file name completion on a file with spaces. (Frederic Hardy, 2009 Mar
67+
23)
68+
Patch by Christian Brabandt, 2012 Oct 18. Update Oct 19.
69+
8170
mouse_sgr is not ordered alphabetically in :version output.
8271
Docs list mouse_urxvt as normal feature, should be big. (Hayaki Saito, 2012
8372
Aug 16)
@@ -104,7 +93,7 @@ complete the contents of the directory. No escaping for the "!"? (Jan
10493
Stocker, 2012 Jan 5)
10594

10695
Patch to support 'u' in interactive substitute. (Christian Brabandt, 2012 Sep
107-
28) Asked for tests.
96+
28) With tests: Oct 9.
10897

10998
Patch for IME handling, adds 'imactivatefunc' and 'imstatusfunc' option.
11099
(Yukihiro Nakadaira, 2012 Aug 16)
@@ -115,10 +104,17 @@ Issue 54: document behavior of -complete, also expands arg.
115104
New syntax files for apt. (quidame, 2012 Sep 21)
116105

117106
Patch for if_lua. (Luis Carvalho, 2012 Aug 26, update Aug 29, another Aug 30,
118-
then Sep 1)
107+
then Sep 1, reminder Oct 14)
119108

120109
Issue 72: 'autochdir' causes problems for :vimgrep.
121110

111+
:setlocal does not work in the sandbox, but :set does. Both should work in a
112+
similar way (not setting some options). (Michael Henry, 2012 Oct 20)
113+
114+
In the ATTENTION message about an existing swap file, mention the name of the
115+
process that is running. It might actually be some other program, e.g. after
116+
a reboot.
117+
122118
MS-Windows: Crash opening very long file name starting with "\\".
123119
(Christian Brock, 2012 Jun 29)
124120

@@ -169,6 +165,10 @@ But use "gi" instead of "a". Or use CTRL-\ CTRL-O.
169165
Patch to support user name completion on MS-Windows. (Yasuhiro Matsumoto, 2012
170166
Aug 16)
171167

168+
Have an option for spell checking to not mark any Chinese, Japanese or other
169+
double-width characters as error. Or perhaps all characters above 256.
170+
(Bill Sun) Helps a lot for mixed Asian and latin text.
171+
172172
URXVT:
173173
- will get stuck if byte sequence does not containe expected semicolon.
174174
- Use urxvt mouse support also in xterm. Explanations:
@@ -761,10 +761,6 @@ Now that colnr_T is int instead of unsigned, more type casts can be removed.
761761
'delcombine' does not work for the command line. (Tony Mechelynck, 2009 Jul
762762
20)
763763

764-
Unwanted file name escaping: ":echo input('file:' , '', 'file')"
765-
And use file name completion on a file with spaces. (Frederic Hardy, 2009 Mar
766-
23)
767-
768764
Don't load macmap.vim on startup, turn it into a plugin. (Ron Aaron,
769765
2009 Apr 7) Reminder Apr 14.
770766

runtime/doc/usr_41.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_41.txt* For Vim version 7.3. Last change: 2012 Mar 16
1+
*usr_41.txt* For Vim version 7.3. Last change: 2012 Oct 13
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -1581,7 +1581,7 @@ Here the comment part will be ignored. However, Vim will try to unmap
15811581
15821582
RESTORING THE VIEW
15831583

1584-
Sometimes you want to make a change and go back to where cursor was.
1584+
Sometimes you want to make a change and go back to where the cursor was.
15851585
Restoring the relative position would also be nice, so that the same line
15861586
appears at the top of the window.
15871587
This example yanks the current line, puts it above the first line in the

runtime/filetype.vim

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1566,7 +1566,7 @@ au BufNewFile,BufRead *.reg
15661566
au BufNewFile,BufRead *.rib setf rib
15671567

15681568
" Rexx
1569-
au BufNewFile,BufRead *.rexx,*.rex,*.jrexx,*.rxj,*.orx setf rexx
1569+
au BufNewFile,BufRead *.rex,*.orx,*.rxo,*.rxj,*.jrexx,*.rexxj,*.rexx,*.testGroup,*.testUnit setf rexx
15701570

15711571
" R (Splus)
15721572
if has("fname_case")
@@ -1884,6 +1884,8 @@ au BufNewFile,BufRead *.st setf st
18841884
au BufNewFile,BufRead *.cls
18851885
\ if getline(1) =~ '^%' |
18861886
\ setf tex |
1887+
\ elseif getline(1)[0] == '#' && getline(1) =~ 'rexx' |
1888+
\ setf rexx |
18871889
\ else |
18881890
\ setf st |
18891891
\ endif

runtime/menu.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
" You can also use this as a start for your own set of menus.
33
"
44
" Maintainer: Bram Moolenaar <[email protected]>
5-
" Last Change: 2011 Mar 22
5+
" Last Change: 2012 Oct 21
66

77
" Note that ":an" (short for ":anoremenu") is often used to make a menu work
88
" in all modes and avoid side effects from mappings defined by the user.

0 commit comments

Comments
 (0)