Skip to content

Commit 27b9026

Browse files
committed
Updated runtime files.
1 parent fed59ac commit 27b9026

File tree

10 files changed

+97
-45
lines changed

10 files changed

+97
-45
lines changed

runtime/doc/cmdline.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*cmdline.txt* For Vim version 7.4. Last change: 2013 Mar 16
1+
*cmdline.txt* For Vim version 7.4. Last change: 2013 Nov 25
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -758,6 +758,7 @@ characters have a special meaning. These can also be used in the expression
758758
function expand() |expand()|.
759759
% Is replaced with the current file name. *:_%* *c_%*
760760
# Is replaced with the alternate file name. *:_#* *c_#*
761+
This is remembered for every window.
761762
#n (where n is a number) is replaced with *:_#0* *:_#n*
762763
the file name of buffer n. "#0" is the same as "#". *c_#n*
763764
## Is replaced with all names in the argument list *:_##* *c_##*

runtime/doc/editing.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*editing.txt* For Vim version 7.4. Last change: 2013 Aug 03
1+
*editing.txt* For Vim version 7.4. Last change: 2013 Nov 25
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -38,6 +38,7 @@ If there already was a current file name, then that one becomes the alternate
3838
file name. It can be used with "#" on the command line |:_#| and you can use
3939
the |CTRL-^| command to toggle between the current and the alternate file.
4040
However, the alternate file name is not changed when |:keepalt| is used.
41+
An alternate file name is remembered for each window.
4142

4243
*:keepalt* *:keepa*
4344
:keepalt {cmd} Execute {cmd} while keeping the current alternate file

runtime/doc/sign.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*sign.txt* For Vim version 7.4. Last change: 2012 Jul 10
1+
*sign.txt* For Vim version 7.4. Last change: 2013 Nov 17
22

33

44
VIM REFERENCE MANUAL by Gordon Prieur
@@ -173,7 +173,7 @@ REMOVING SIGNS *:sign-unplace* *E159*
173173
Remove the placed sign at the cursor position.
174174

175175

176-
LISTING PLACED SIGNS
176+
LISTING PLACED SIGNS *:sign-place-list*
177177

178178
:sign place file={fname}
179179
List signs placed in file {fname}.

runtime/doc/tags

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2742,6 +2742,7 @@ $VIMRUNTIME starting.txt /*$VIMRUNTIME*
27422742
:sign-jump sign.txt /*:sign-jump*
27432743
:sign-list sign.txt /*:sign-list*
27442744
:sign-place sign.txt /*:sign-place*
2745+
:sign-place-list sign.txt /*:sign-place-list*
27452746
:sign-undefine sign.txt /*:sign-undefine*
27462747
:sign-unplace sign.txt /*:sign-unplace*
27472748
:sil various.txt /*:sil*

runtime/doc/todo.txt

Lines changed: 52 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*todo.txt* For Vim version 7.4. Last change: 2013 Nov 14
1+
*todo.txt* For Vim version 7.4. Last change: 2013 Nov 26
22

33

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

37-
Patch From Lech Lorens doesn't quite work:
38-
Problem: When using ":'<,'>del" errors may be given for the visual line
39-
numbers being out of range.
40-
Solution: Reset Visual mode in ":del". (Lech Lorens)
41-
Files: src/ex_docmd.c
37+
NFA regexp doesn't count tab matches correctly. (Urtica Dioica / gaultheria
38+
Shallon, 2013 Nov 18)
4239

43-
44-
Using \1 in pattern goes one line too far. (Bohr Shaw, 2013 Sep 5)
45-
Column is OK. "/\v(^.+\n)\1/e" (John Little, Sep 5)
46-
Also, matches start of 2nd line, not the whole line.
47-
48-
NFA regexp doesn't handle backreference correctly. (Ryuichi Hayashida, 2013
49-
Oct 10)
40+
After patch 7.4.100 there is still a difference between NFA and old engine.
41+
25 a's with pattern \v^(aa+)\1+$ (Urtica Dioica, 2013 Nov 21)
42+
Also: 9 a's with pattern \v^(a{-2,})\1+$ (Nov 23)
5043

5144
Error for incomplete help argument. (John Beckett, 2013 Sep 12)
5245

46+
Tutor: adjust text to start the tutor. (Jakson Alves de Aquino, 2013 Nov 19)
47+
5348
Should win_redr_custom() not be allowed to use recursively?
5449
(Yasuhiro Matsumoto, 2013 Aug 15)
5550

5651
NFA engine combining character mismatch. (glts, 2013 Aug 27)
5752
Remark Dominique, Aug 27
5853

54+
Patch to fix building with Ruby on Cygwin. (Steve Hall, 2013 Nov 21)
55+
56+
Patch to fix that in Python vim.eval errors are not caught by try/catch.
57+
(ZyX, 2013 Nov 26)
58+
5959
Problem that a previous silent ":throw" causes a following try/catch not to
6060
work. (ZyX, 2013 Sep 28)
6161

@@ -72,9 +72,13 @@ Patch to support slices in Python vim.List. (ZyX, 2013 Oct 20)
7272

7373
Patch to support iterator on Python vim.options. (ZyX, 2013 Nov 2)
7474

75+
Patch to fix that "zG" leaves temp files around. (Ken Takata, 2013 Nov 22)
76+
7577
Patch to make Dictionary.update() work without arguments.
7678
(ZyX, 2013 Oct 19)
7779

80+
Bug caused by patch 7.3.1288? Issue 183.
81+
7882
Patch for Cobol ftplugin. (ZyX, 2013 Oct 20)
7983
Await response from maintainer.
8084

@@ -93,6 +97,8 @@ Issue 174: Detect Mason files.
9397
Patch to make has() check for Vim version and patch at the same time.
9498
(Marc Weber, 2013 Jun 7)
9599

100+
Regression on pach 7.4.034. (Ingo Karkat, 2013 Nov 20)
101+
96102
VMS: Select() doesn't work properly, typing ESC may hang Vim. Use sys$qiow
97103
instead. (Samuel Ferencik, 2013 Sep 28)
98104

@@ -119,7 +125,7 @@ With "$" in 'cpoptions' the popup menu isn't fully drawn. (Matti Niemenmaa,
119125

120126
"gUgn" cannot be repeated, while "dgn" can. (Dimitar Dimitrov)
121127
Patch by Christian Brabandt (2013 Aug 12)
122-
Also notes by Christian Wellenbrock, Nov 13.
128+
Also notes by Christian Wellenbrock, Nov 13, response from Christian Nov 14.
123129

124130
Several Win32 functions are not using Unicode.
125131
Patches to fix this. (Ken Takata, 2013 Aug 9)
@@ -132,6 +138,11 @@ Undo message is not always properly displayed. Patch by Ken Takata, 2013 oct
132138

133139
/[b-a] gives error E16, should probably be E769.
134140

141+
7 Windows XP: When using "ClearType" for text smoothing, a column of yellow
142+
pixels remains when typing spaces in front of a "D" ('guifont' set to
143+
"lucida_console:h8").
144+
Patch by Thomas Tuegel, also for GTK, 2013 Nov 24
145+
135146
:help gives example for z?, but it does not work. m? and t? do work.
136147

137148
Python: Extended funcrefs: use func_T* structure in place of char_u* function
@@ -140,6 +151,9 @@ names. (ZyX, 2013 Jul 15, update Sep 22, 24, 28)
140151
Patch to add funcref to Lua. (Luis Carvalho, 2013 Sep 4)
141152
With tests: Sep 5.
142153

154+
Patch to fix that on suckless Terminal mousewheel up does not work.
155+
(Ralph Eastwood, 2013 Nov 25)
156+
143157
Discussion about canonicalization of Hebrew. (Ron Aaron, 2011 April 10)
144158

145159
Patch to make external commands work with multi-byte characters on Win32 when
@@ -150,9 +164,18 @@ Checking runtime scripts: Thilo Six, 2012 Jun 6.
150164
Fold can't be opened after ":move". (Ein Brown)
151165
Patch from Christian Brabandt doesn't fix it completely.
152166

167+
Patch for drag&drop reordering of GUI tab pages reordering.
168+
(Ken Takata, 2013 Nov 22, second one, also by Masamichi Abe)
169+
170+
":sign-jump" uses first window in buffer instead of current window.
171+
Patch by James McCoy, 2013 Nov 22.
172+
153173
GTK: problem with 'L' in 'guioptions' changing the window width.
154174
(Aaron Cornelius, 2012 Feb 6)
155175

176+
Patch to add option that tells whether small deletes go into the numbered
177+
registers. (Aryeh Leib Taurog, 2013 Nov 18)
178+
156179
Javascript file where indent gets stuck on: GalaxyMaster, 2012 May 3.
157180

158181
The BufUnload event is triggered when re-using the empty buffer.
@@ -177,6 +200,9 @@ Or should we add a more general mechanism, like lambda functions?
177200
Problem caused by patch 7.3.638: window->open does not update window
178201
correctly. Issue 91.
179202

203+
Exception caused by argument of return is not caught by try/catch.
204+
(David Barnett, 2013 Nov 19)
205+
180206
8 'backupdir' and 'directory' should use $TMPDIR, $TMP and/or $TEMP when
181207
defined.
182208
Issue 28.
@@ -243,6 +269,12 @@ a reboot.
243269
MS-Windows: Crash opening very long file name starting with "\\".
244270
(Christian Brock, 2012 Jun 29)
245271

272+
Patch to have text objects defined by arbitrary single characters. (Daniel
273+
Thau, 2013 Nov 20)
274+
275+
Patch to select the next or previous text object if there isn't one under the
276+
cursor. (Daniel Thau, 2013 Nov 20)
277+
246278
patch to add "combine" flag to syntax commands. (so8res, 2012 Dec 6)
247279

248280
Syntax update problem in one buffer opened in two windows, bottom window is
@@ -516,6 +548,8 @@ following "redir" command gives an error for not being able to access s:foo.
516548
When setqflist() uses a filename that triggers a BufReadCmd autocommand Vim
517549
doesn't jump to the correct line with :cfirst. (ZyX, 2011 Sep 18)
518550

551+
Behavior of i" and a" text objects isn't logical. (Ben Fritz, 2013 Nov 19)
552+
519553
7 Make "ga" show the digraph for a character, if it exists.
520554
Patch from Christian Brabandt, 2011 Aug 19.
521555

@@ -1399,6 +1433,10 @@ Does the conversion in the other direction work when 'fileencodings' is set
13991433
properly?
14001434

14011435
Add a few features to xxd. (Vadim Vygonets, 2013 Nov 11)
1436+
Patches: 2013 Nov 19
1437+
1: Add -e: little endian hexdump
1438+
2: Add -o: add offset to displayed position
1439+
3: Change displayed file position width to 8 chars
14021440

14031441
Cursor displayed in the wrong position when using 'numberwidth'. (James Vega,
14041442
2007 Jun 21)
@@ -1969,9 +2007,6 @@ Win32 GUI known bugs:
19692007
Tutorial: http://win32assembly.online.fr/tut32.html
19702008
8 In eval.c, io.h is included when MSWIN32 is defined. Shouldn't this be
19712009
WIN32? Or can including io.h be moved to vim.h? (Dan Sharp)
1972-
7 Windows XP: When using "ClearType" for text smoothing, a column of yellow
1973-
pixels remains when typing spaces in front of a "D" ('guifont' set to
1974-
"lucida_console:h8").
19752010
6 Win32 GUI: With "-u NONE -U NONE" and doing "CTRL-W v" "CTRL-W o", the ":"
19762011
of ":only" is highlighted like the cursor. (Lipelis)
19772012
8 When 'encoding' is "utf-8", should use 'guifont' for both normal and wide

runtime/doc/version7.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version7.txt* For Vim version 7.4. Last change: 2013 Sep 03
1+
*version7.txt* For Vim version 7.4. Last change: 2013 Nov 18
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -7188,7 +7188,7 @@ More encryption *new-more-encryption*
71887188
---------------
71897189

71907190
Support for Blowfish encryption. Added the 'cryptmethod' option.
7191-
Mostly by Moshin Ahmed.
7191+
Mostly by Mohsin Ahmed.
71927192

71937193
Also encrypt the text in the swap file and the undo file.
71947194

runtime/ftplugin/jproperties.vim

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
" Vim filetype plugin
2+
" Language: Java properties file
3+
" Maintainer: David Bürgin <[email protected]>
4+
" Last Change: 2013-11-19
5+
6+
if exists("b:did_ftplugin")
7+
finish
8+
endif
9+
let b:did_ftplugin = 1
10+
11+
setlocal formatoptions-=t
12+
setlocal comments=:#,:!
13+
setlocal commentstring=#\ %s
14+
15+
let b:undo_ftplugin = "setl cms< com< fo<"

runtime/ftplugin/python.vim

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Vim filetype plugin file
22
" Language: python
33
" Maintainer: Johannes Zellner <[email protected]>
4-
" Last Change: 2013 Sep 25
4+
" Last Change: 2013 Nov 28
55
" Last Change By Johannes: Wed, 21 Apr 2004 13:13:08 CEST
66

77
if exists("b:did_ftplugin") | finish | endif
@@ -14,8 +14,8 @@ setlocal indentkeys-=0#
1414
setlocal include=\s*\\(from\\\|import\\)
1515
setlocal includeexpr=substitute(v:fname,'\\.','/','g')
1616
setlocal suffixesadd=.py
17-
setlocal comments-=:%
18-
setlocal commentstring=#%s
17+
setlocal comments=b:#,fb:-
18+
setlocal commentstring=#\ %s
1919

2020
setlocal omnifunc=pythoncomplete#Complete
2121

@@ -26,21 +26,21 @@ nnoremap <silent> <buffer> [[ :call <SID>Python_jump('?^\(class\\|def\)')<cr>
2626
nnoremap <silent> <buffer> ]m :call <SID>Python_jump('/^\s*\(class\\|def\)')<cr>
2727
nnoremap <silent> <buffer> [m :call <SID>Python_jump('?^\s*\(class\\|def\)')<cr>
2828
29-
if exists('*<SID>Python_jump') | finish | endif
30-
31-
fun! <SID>Python_jump(motion) range
32-
let cnt = v:count1
33-
let save = @/ " save last search pattern
34-
mark '
35-
while cnt > 0
36-
silent! exe a:motion
37-
let cnt = cnt - 1
38-
endwhile
39-
call histdel('/', -1)
40-
let @/ = save " restore last search pattern
41-
endfun
29+
if !exists('*<SID>Python_jump')
30+
fun! <SID>Python_jump(motion) range
31+
let cnt = v:count1
32+
let save = @/ " save last search pattern
33+
mark '
34+
while cnt > 0
35+
silent! exe a:motion
36+
let cnt = cnt - 1
37+
endwhile
38+
call histdel('/', -1)
39+
let @/ = save " restore last search pattern
40+
endfun
41+
endif
4242

43-
if has("gui_win32") && !exists("b:browsefilter")
43+
if has("browsefilter") && !exists("b:browsefilter")
4444
let b:browsefilter = "Python Files (*.py)\t*.py\n" .
4545
\ "All Files (*.*)\t*.*\n"
4646
endif

runtime/syntax/help.vim

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Vim syntax file
22
" Language: Vim help file
33
" Maintainer: Bram Moolenaar ([email protected])
4-
" Last Change: 2013 Sep 05
4+
" Last Change: 2013 Nov 17
55

66
" Quit when a (custom) syntax file was already loaded
77
if exists("b:current_syntax")
@@ -153,7 +153,7 @@ syn sync minlines=40
153153
" Define the default highlighting.
154154
" Only used when an item doesn't have highlighting yet
155155
hi def link helpIgnore Ignore
156-
hi def link helpHyperTextJump Subtitle
156+
hi def link helpHyperTextJump Identifier
157157
hi def link helpBar Ignore
158158
hi def link helpBacktick Ignore
159159
hi def link helpStar Ignore
@@ -168,7 +168,6 @@ hi def link helpOption Type
168168
hi def link helpNotVi Special
169169
hi def link helpSpecial Special
170170
hi def link helpNote Todo
171-
hi def link Subtitle Identifier
172171

173172
hi def link helpComment Comment
174173
hi def link helpConstant Constant

runtime/syntax/rst.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Vim syntax file
22
" Language: reStructuredText documentation format
33
" Maintainer: Nikolai Weibull <[email protected]>
4-
" Latest Revision: 2013-06-03
4+
" Latest Revision: 2013-11-26
55

66
if exists("b:current_syntax")
77
finish
@@ -152,7 +152,7 @@ for code in g:rst_syntax_code_list
152152
exe 'syn region rstDirective'.code.' matchgroup=rstDirective fold '
153153
\.'start=#\%(sourcecode\|code\%(-block\)\=\)::\s\+'.code.'\s*$# '
154154
\.'skip=#^$# '
155-
\.'end=#^\s\@!# contains=@NoSpell,@rst'.code
155+
\.'end=#^\s\@!# contains=@NoSpell,@rst'.code.' keepend'
156156
exe 'syn cluster rstDirectives add=rstDirective'.code
157157
endfor
158158

0 commit comments

Comments
 (0)