Skip to content

Commit 661b182

Browse files
committed
updated for version 7.0118
1 parent cfc7d63 commit 661b182

20 files changed

Lines changed: 142 additions & 57 deletions

File tree

runtime/doc/eval.txt

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim version 7.0aa. Last change: 2005 Jul 25
1+
*eval.txt* For Vim version 7.0aa. Last change: 2005 Jul 28
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2416,29 +2416,24 @@ get({dict}, {key} [, {default}])
24162416

24172417
*getbufline()*
24182418
getbufline({expr}, {lnum} [, {end}])
2419-
Return the lines starting from {lnum} to {end} in the buffer
2420-
{expr} as a List. If {end} is omitted, only the line {lnum}
2421-
is returned.
2419+
Return a List with the lines starting from {lnum} to {end}
2420+
(inclusive) in the buffer {expr}. If {end} is omitted, a List
2421+
with only the line {lnum} is returned.
24222422

24232423
For the use of {expr}, see |bufname()| above.
24242424

2425-
When {lnum} is a String that doesn't start with a
2426-
digit, line() is called to translate the String into a Number.
2427-
2428-
{end} is used in the same way as {lnum}.
2425+
For {lnum} and {end} "$" can be used for the last line of the
2426+
buffer. Otherwise a number must be used.
24292427

24302428
When {lnum} is smaller than 1 or bigger than the number of
24312429
lines in the buffer, an empty List is returned.
24322430

24332431
When {end} is greater than the number of lines in the buffer,
24342432
it is treated as {end} is set to the number of lines in the
2435-
buffer.
2436-
2437-
When non-existing line ranges are specified, an empty List is
2438-
returned. When {end} is before {lnum} an empty List is
2433+
buffer. When {end} is before {lnum} an empty List is
24392434
returned.
24402435

2441-
This function works only for loaded buffers. For unloaded and
2436+
This function works only for loaded buffers. For unloaded and
24422437
non-existing buffers, an empty List is returned.
24432438

24442439
Example: >

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.0aa. Last change: 2005 Jul 26
1+
*options.txt* For Vim version 7.0aa. Last change: 2005 Jul 28
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2282,9 +2282,11 @@ A jump table for the options with a short description can be found at |Q_op|.
22822282
|viminfo-file|. And Vim expects the terminal to use utf-8 too. Thus
22832283
setting 'encoding' to one of these values instead of utf-8 only has
22842284
effect for encoding used for files when 'fileencoding' is empty.
2285+
"utf-16" is NOT supported (and probably never will be, since it's such
2286+
an ugly encoding). *utf-16*
22852287

2286-
When 'encoding' is set to a Unicode encoding, and 'fileencodings' was
2287-
not set yet, the default for 'fileencodings' is changed.
2288+
When 'encoding' is set to a Unicode encoding, and 'fileencodings' was
2289+
not set yet, the default for 'fileencodings' is changed.
22882290

22892291
*'endofline'* *'eol'* *'noendofline'* *'noeol'*
22902292
'endofline' 'eol' boolean (default on)

runtime/doc/syntax.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*syntax.txt* For Vim version 7.0aa. Last change: 2005 Jul 18
1+
*syntax.txt* For Vim version 7.0aa. Last change: 2005 Jul 28
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -3641,6 +3641,15 @@ specified field is used, and settings are merged with previous ones. So, the
36413641
result is like this single command has been used: >
36423642
:hi Comment term=bold ctermfg=Cyan guifg=#80a0ff gui=bold
36433643
<
3644+
When listing a highlight group and 'verbose' is non-zero, the listing will
3645+
also tell where it was last set. Example: >
3646+
:verbose hi Comment
3647+
< Comment xxx term=bold ctermfg=4 guifg=Blue ~
3648+
Last set from /home/mool/vim/vim7/runtime/syntax/syncolor.vim ~
3649+
3650+
For details about when this message is given and when it's valid see
3651+
|:set-verbose|.
3652+
36443653
*highlight-args* *E416* *E417* *E423*
36453654
There are three types of terminals for highlighting:
36463655
term a normal terminal (vt100, xterm)

runtime/doc/tags

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4984,6 +4984,7 @@ g:netrw_rmdir_cmd pi_netrw.txt /*g:netrw_rmdir_cmd*
49844984
g:netrw_rmf_cmd pi_netrw.txt /*g:netrw_rmf_cmd*
49854985
g:var eval.txt /*g:var*
49864986
g; motion.txt /*g;*
4987+
g< message.txt /*g<*
49874988
g<Down> motion.txt /*g<Down>*
49884989
g<End> motion.txt /*g<End>*
49894990
g<Home> motion.txt /*g<Home>*
@@ -6746,6 +6747,7 @@ usr_44.txt usr_44.txt /*usr_44.txt*
67466747
usr_45.txt usr_45.txt /*usr_45.txt*
67476748
usr_90.txt usr_90.txt /*usr_90.txt*
67486749
usr_toc.txt usr_toc.txt /*usr_toc.txt*
6750+
utf-16 options.txt /*utf-16*
67496751
utf-8 mbyte.txt /*utf-8*
67506752
utf-8-char-arg mbyte.txt /*utf-8-char-arg*
67516753
utf-8-in-xwindows mbyte.txt /*utf-8-in-xwindows*

runtime/doc/todo.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*todo.txt* For Vim version 7.0aa. Last change: 2005 Jul 27
1+
*todo.txt* For Vim version 7.0aa. Last change: 2005 Jul 28
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -30,6 +30,8 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
3030
*known-bugs*
3131
-------------------- Known bugs and current work -----------------------
3232

33+
Is it simple to let ":verbose hi mailSubject" mention where it was last set?
34+
3335
Mac unicode patch (Da Woon Jung):
3436
- selecting proportional font breaks display
3537
- UTF-8 text causes display problems. Font replacement causes this.
@@ -52,8 +54,6 @@ Awaiting response:
5254
- Win32: tearoff menu window should have a scrollbar when it's taller than
5355
the screen.
5456
- mblen(NULL, 0) also in Vim 6.3?
55-
- Win32: Crash when pasting Simplified Chinese in utf-8. (rainux, 2005 June
56-
20)
5757

5858

5959
PLANNED FOR VERSION 7.0:

runtime/doc/version7.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version7.txt* For Vim version 7.0aa. Last change: 2005 Jul 27
1+
*version7.txt* For Vim version 7.0aa. Last change: 2005 Jul 28
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -238,6 +238,9 @@ is especially useful for commands such as ":syntax", ":autocommand" and
238238
commands and highlighting is kept. Only works when the 'more' option is set.
239239
Previously it only partly worked for ":clist".
240240

241+
The |g<| command can be used to see the last page of messages after you have
242+
hit <Enter> at the |hit-enter-prompt|. Then you can scroll further back.
243+
241244

242245
POSIX compatibility *new-posix*
243246
-------------------
@@ -724,6 +727,9 @@ Win32: Balloons can have multiple lines if common controls supports it.
724727
The 's' flag is added to the search() and searchpair() function to set the
725728
' mark if the cursor is moved. (Yegappan Lakshmanan)
726729

730+
When 'verbose' is set the output of ":highlight" will show where a highlight
731+
item was last set.
732+
727733
==============================================================================
728734
COMPILE TIME CHANGES *compile-changes-7*
729735

runtime/spell/de/main.aap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ all: $(SPELLDIR)/de.latin1.spl $(SPELLDIR)/de.utf-8.spl ../README_de.txt
1414

1515
$(SPELLDIR)/de.latin1.spl : $(VIM) $(FILES)
1616
:sys env LANG=de_DE.ISO8859-1
17-
$(VIM) -e -c "mkspell! $(SPELLDIR)/de de_DE" -c q
17+
$(VIM) -u NONE -e -c "mkspell! $(SPELLDIR)/de de_DE" -c q
1818

1919
$(SPELLDIR)/de.utf-8.spl : $(VIM) $(FILES)
2020
:sys env LANG=de_DE.UTF-8
21-
$(VIM) -e -c "mkspell! $(SPELLDIR)/de de_DE" -c q
21+
$(VIM) -u NONE -e -c "mkspell! $(SPELLDIR)/de de_DE" -c q
2222

2323
../README_de.txt: README_de_DE_comb.txt
2424
:copy $source $target

runtime/spell/en/main.aap

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ all: $(SPELLDIR)/en.latin1.spl $(SPELLDIR)/en.utf-8.spl \
1818

1919
$(SPELLDIR)/en.latin1.spl : $(VIM) $(FILES)
2020
:sys env LANG=en_US.ISO8859-1
21-
$(VIM) -e -c "mkspell! $(SPELLDIR)/en en_US en_AU en_CA en_GB
22-
en_NZ" -c q
21+
$(VIM) -u NONE -e -c "mkspell! $(SPELLDIR)/en
22+
en_US en_AU en_CA en_GB en_NZ" -c q
2323

2424
$(SPELLDIR)/en.utf-8.spl : $(VIM) $(FILES)
2525
:sys env LANG=en_US.UTF-8
26-
$(VIM) -e -c "mkspell! $(SPELLDIR)/en en_US en_AU en_CA en_GB
27-
en_NZ" -c q
26+
$(VIM) -u NONE -e -c "mkspell! $(SPELLDIR)/en
27+
en_US en_AU en_CA en_GB en_NZ" -c q
2828

2929
$(SPELLDIR)/en.ascii.spl : $(VIM) $(FILES)
30-
:sys $(VIM) -e -c "mkspell! -ascii $(SPELLDIR)/en
30+
:sys $(VIM) -u NONE -e -c "mkspell! -ascii $(SPELLDIR)/en
3131
en_US en_AU en_CA en_GB en_NZ" -c q
3232

3333
../README_en.txt: README_en_US.txt README_en_AU.txt

runtime/spell/he/main.aap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ all: $(SPELLDIR)/he.utf-8.spl $(SPELLDIR)/he.iso-8859-8.spl ../README_he.txt
1313

1414
$(SPELLDIR)/he.utf-8.spl : $(VIM) $(FILES)
1515
:sys env LANG=he_IL.UTF-8
16-
$(VIM) -e -c "mkspell! $(SPELLDIR)/he he_IL" -c q
16+
$(VIM) -u NONE -e -c "mkspell! $(SPELLDIR)/he he_IL" -c q
1717

1818
$(SPELLDIR)/he.iso-8859-8.spl : $(VIM) $(FILES)
19-
:sys $(VIM) -e -c "set enc=iso-8859-8"
19+
:sys $(VIM) -u NONE -e -c "set enc=iso-8859-8"
2020
-c "mkspell! $(SPELLDIR)/he he_IL" -c q
2121

2222
../README_he.txt : README_he_IL.txt

runtime/spell/nl/main.aap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ all: $(SPELLDIR)/nl.latin1.spl $(SPELLDIR)/nl.utf-8.spl ../README_nl.txt
1313

1414
$(SPELLDIR)/nl.latin1.spl : $(VIM) $(FILES)
1515
:sys env LANG=nl_NL.ISO8859-1
16-
$(VIM) -e -c "mkspell! $(SPELLDIR)/nl nl_NL" -c q
16+
$(VIM) -u NONE -e -c "mkspell! $(SPELLDIR)/nl nl_NL" -c q
1717

1818
$(SPELLDIR)/nl.utf-8.spl : $(VIM) $(FILES)
1919
:sys env LANG=nl_NL.UTF-8
20-
$(VIM) -e -c "mkspell! $(SPELLDIR)/nl nl_NL" -c q
20+
$(VIM) -u NONE -e -c "mkspell! $(SPELLDIR)/nl nl_NL" -c q
2121

2222
../README_nl.txt : README_nl_NL.txt
2323
:copy $source $target

0 commit comments

Comments
 (0)