Skip to content

Commit dc0db92

Browse files
committed
Update runtime files.
1 parent 35d5e03 commit dc0db92

File tree

8 files changed

+951
-42
lines changed

8 files changed

+951
-42
lines changed

runtime/doc/eval.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ This removes all entries from "dict" with a value not matching 'x'.
503503

504504

505505
Dictionary function ~
506-
*Dictionary-function* *self* *E725*
506+
*Dictionary-function* *self* *E725* *E862*
507507
When a function is defined with the "dict" attribute it can be used in a
508508
special way with a dictionary. Example: >
509509
:function Mylen() dict

runtime/doc/options.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*options.txt* For Vim version 7.3. Last change: 2013 Feb 13
1+
*options.txt* For Vim version 7.3. Last change: 2013 Feb 20
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -7918,6 +7918,7 @@ A jump table for the options with a short description can be found at |Q_op|.
79187918
CTRL-P/CTRL-N, cause the highlight to move to the appropriate match.
79197919
When 'wildmode' is used, "wildmenu" mode is used where "full" is
79207920
specified. "longest" and "list" do not start "wildmenu" mode.
7921+
You can check the current mode with |wildmenumode()|.
79217922
If there are more matches than can fit in the line, a ">" is shown on
79227923
the right and/or a "<" is shown on the left. The status line scrolls
79237924
as needed.

runtime/doc/todo.txt

Lines changed: 33 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*todo.txt* For Vim version 7.3. Last change: 2013 Feb 13
1+
*todo.txt* For Vim version 7.3. Last change: 2013 Feb 20
22

33

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

37+
Patch for Win32 clipboard under Cygwin. (Frodak Baksik, Feb 15)
38+
Sutcliffe says it works well.
39+
Update 2007 May 22 for Vim 7.1
40+
Update 2008 Dec 2008 for Vim 7.2.xx (Sharonov)
41+
Update by Ken Takata (2012 Dec 31, 2013 Jan 4, 2013 Jan 26)
42+
3743
Download counter for scripts no longer incremented?
3844
Because SourceForge does not have the IP address now, see ticket
3945
https://sourceforge.net/p/forge/site-support/2461/?page=1
@@ -43,6 +49,10 @@ highlight group. Add a "\zs" after it?
4349

4450
Go through more coverity reports.
4551

52+
Valgrind errors in test 16.
53+
54+
Memory leaks in Lua, uncovered by test 85.
55+
4656
Discussion about canonicalization of Hebrew. (Ron Aaron, 2011 April 10)
4757

4858
Checking runtime scripts: Thilo Six, 2012 Jun 6.
@@ -52,60 +62,43 @@ GTK: problem with 'L' in 'guioptions' changing the window width.
5262

5363
Javascript file where indent gets stuck on: GalaxyMaster, 2012 May 3.
5464

55-
Patch to trigger CompleteDone when there are no pattern matches. (Christian
56-
Brabandt, 2013 Feb 7)
57-
5865
The CompleteDone autocommand needs some info passed to it:
5966
- The word that was selected (empty if abandoned complete)
6067
- Type of completion: tag, omnifunc, user func.
6168

62-
Patch to make multibyte input work on Win32 console when codepage differs from
63-
'encoding'. (Ken Takata, 2012 Sep 29)
64-
65-
Patch for building with Ruby and Cygwin. (Ken Takata, 2013 Jan 9)
66-
67-
Patch to make 'relativenumber' show the current lnum instead of zero.
68-
(Nazri Ramliy, 2013 Jan 29)
69-
70-
It's possible to define an input() function that overrides the built-in one.
71-
(ZyX, 2012 Sep 28)
72-
73-
Patch to add sha256() function. (Tyru, 2013 Jan 8)
74-
Test by Higashi, 2013 Feb 2.
75-
All together (tyru, 2013 Feb 5)
76-
77-
Patch to make pyeval() print error messages. (ZyX, 2013 Jan 12)
78-
7969
Win32: When a directory name contains an exclamation mark, completion doesn't
8070
complete the contents of the directory. No escaping for the "!"? (Jan
8171
Stocker, 2012 Jan 5)
8272

83-
Patch for Win32 clipboard under Cygwin. (Frodak Baksik, Feb 15)
84-
Sutcliffe says it works well.
85-
Update 2007 May 22 for Vim 7.1
86-
Update 2008 Dec 2008 for Vim 7.2.xx (Sharonov)
87-
Update by Ken Takata (2012 Dec 31, 2013 Jan 4, 2013 Jan 26)
88-
8973
Problem parsing expression with function(). (Andy Wokula, 2012 Nov 22)
9074
Patch by Christian Brabandt, Nov 22. Tests in another patch, Nov 23.
9175

9276
Patch to detect value of 'ambiwidth' from the termresponse.
9377
(Hayaki Saito, 2013 Feb 11)
9478

9579
Matchparen does not update match when indenting. (Marc Aldorasi, 2013 Feb 9)
96-
97-
Patch to add default value to getbufvar() et al. (Shougo Matsushita, Hirohito
98-
Higashi, 2013 Jan 1)
80+
Possible patch by Christian Brabandt, 2013 Feb 13.
9981

10082
Problem caused by patch 7.3.638: window->open does not update window
10183
correctly. Issue 91.
10284

85+
Patch for this bug: Setting local value of 'number' resets global value.
86+
(Markus Heidelberg, 2013 Feb 17)
87+
10388
Patch to add argument to bufname() to only consider buffers in the current
10489
tab. (Alexey Radkov, 2013 Feb 8) Example in later email.
10590
Is this right?
10691

10792
Patch to fix compiler warnings for MingW 4.5.3. (Ken Takata, 2013 Jan 26)
10893

94+
Bug: search() does not use the match at the cursor position if it's empty.
95+
(Christian Brabandt, 2013 Feb 16) Patch later.
96+
97+
Patch to make it possible to create Title Case in :s. with \L\u.
98+
(James McCoy, 2013 Feb 13)
99+
100+
Patch to view coverage of the tests. (Nazri Ramliy, 2013 Feb 15)
101+
109102
Do allow real tags above the !_TAG entries. Undo older patch. Issue 90.
110103

111104
Patch to support 'u' in interactive substitute. (Christian Brabandt, 2012 Sep
@@ -145,6 +138,9 @@ It's probably a good idea to make a negative value for 'sts' use the value of
145138

146139
patch to add "combine" flag to syntax commands. (so8res, 2012 Dec 6)
147140

141+
Bug in completion menu. (Olivier Teuliere, 2013 Feb 15)
142+
Patch by Christian Brabandt, Feb 16.
143+
148144
Syntax update problem in one buffer opened in two windows, bottom window is
149145
not correctly updated. (Paul Harris, 2012 Feb 27)
150146

@@ -412,7 +408,7 @@ When a buffer-local mapping is used, but a global mapping starts with the same
412408
characters, Vim currently waits for the next typed character to find out if
413409
the global mapping matches. It is probably better to let the local mapping
414410
win and not wait. (discussion with Andy Wokula, 2013 Jan 30)
415-
Patch by Michael Henry, 2013 Jan 30.
411+
Patch by Michael Henry, 2013 Jan 30, update Feb 15.
416412

417413
When doing "redir => s:foo" in a script and then "redir END" somewhere else
418414
(e.g. in a function) it can't find s:foo.
@@ -513,6 +509,9 @@ New esperanto spell file can't be processed. (Dominique Pelle, 2011 Jan 30)
513509
"L'Italie" noted as a spell error at start of the sentence. (Dominique Pelle,
514510
2011 Feb 27)
515511

512+
Functions to read the actual contents of the screen, so that things like
513+
conceal can be tested. (Nazri Ramliy, 2013 Feb 18)
514+
516515
Copy/paste between Vim and Google chrome doesn't work well for multi-byte
517516
characters. (Ben Haskell, 2010 Sep 17)
518517
When putting text in the cut buffer (when exiting) and conversion doesn't work
@@ -524,6 +523,9 @@ Experimental patch by Christian Brabandt, 2012 Apr 19.
524523
Editing a file with a ^M with 'ff' set to "mac", opening a help file, then the
525524
^M is displayed as ^J sometimes. Getting 'ff' value from wrong window/buffer?
526525

526+
'colorcolumn' has higher priority than hlsearch. Should probably be the other
527+
way around. (Nazri Ramliy, 2013 Feb 19)
528+
527529
When Vim is put in the background (SIGTSTP) and then gets a SIGHUP it doesn't
528530
exit. It exists as soon as back in the foreground. (Stephen Liang, 2011 Jan
529531
9) Caused by vim_handle_signal(SIGNAL_BLOCK); in ui.c.

runtime/doc/usr_41.txt

Lines changed: 7 additions & 4 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 Oct 13
1+
*usr_41.txt* For Vim version 7.3. Last change: 2013 Feb 20
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -863,12 +863,15 @@ Window size and position: *window-size-functions*
863863
winsaveview() get view of current window
864864
winrestview() restore saved view of current window
865865

866-
Various: *various-functions*
867-
mode() get current editing mode
868-
visualmode() last visual mode used
866+
Mappings: *mapping-functions*
869867
hasmapto() check if a mapping exists
870868
mapcheck() check if a matching mapping exists
871869
maparg() get rhs of a mapping
870+
wildmenumode() check if the wildmode is active
871+
872+
Various: *various-functions*
873+
mode() get current editing mode
874+
visualmode() last visual mode used
872875
exists() check if a variable, function, etc. exists
873876
has() check if a feature is supported in Vim
874877
changenr() return number of most recent change

runtime/filetype.vim

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Vim support file to detect file types
22
"
33
" Maintainer: Bram Moolenaar <[email protected]>
4-
" Last Change: 2013 Feb 12
4+
" Last Change: 2013 Feb 20
55

66
" Listen very carefully, I will say this only once
77
if exists("did_load_filetypes")
@@ -1632,6 +1632,9 @@ func! s:FTr()
16321632
endif
16331633
endfunc
16341634

1635+
" ReDIF
1636+
au BufRead,BufNewFile *.rdf setf redif
1637+
16351638
" Remind
16361639
au BufNewFile,BufRead .reminders,*.remind,*.rem setf remind
16371640

0 commit comments

Comments
 (0)