• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revisiona2b128f7d705ef08ae91a8616cbaf40883827cdc (tree)
Zeit2006-04-07 05:21:51
Autorvimboss
Commitervimboss

Log Message

updated for version 7.0c11

Ändern Zusammenfassung

Diff

diff -r 57c7403f6599 -r a2b128f7d705 runtime/doc/todo.txt
--- a/runtime/doc/todo.txt Thu Apr 06 20:18:50 2006 +0000
+++ b/runtime/doc/todo.txt Thu Apr 06 20:21:51 2006 +0000
@@ -1,4 +1,4 @@
1-*todo.txt* For Vim version 7.0c. Last change: 2006 Apr 05
1+*todo.txt* For Vim version 7.0c. Last change: 2006 Apr 06
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -31,17 +31,13 @@
3131 -------------------- Known bugs and current work -----------------------
3232
3333 New Hungarian dictionary. (Laci Nemeth)
34-- Support flags on a suffix used for second level affixes.
35- The flags may also be used for compounding. Default is an OR
36- mechanism with the flags of the word.
37- Adding "compset" flag on the affixes means the compound flags of the word
38- are not used?
39-
40-- implement use of CHECKCOMPOUND* flags, <compoptions> in .spl file
41-
34+- implement use of <compoptions> in .spl file:
35+- implement CHECKCOMPOUNDREP: when a compound word seems to be OK apply REP
36+ items and theck if the result is a valid word.
37+- implement CHECKCOMPOUNDDUP
38+- implement CHECKCOMPOUNDTRIPLE
4239 - Add CHECKCOMPOUNDCASE: when compounding make leading capital lower case.
4340 How is it supposed to work?
44-
4541 - implement using CHECKCOMPOUNDPATTERN: match words with sl_comppat[].
4642
4743 Obey 'switchbuf' "useopen" value for windows in other tabs, e.g. for :sbuffer.
@@ -1113,6 +1109,8 @@
11131109 - Add a command the repeats ]s and z=, showing the misspelled word in its
11141110 context. Thus to spell-check a whole file.
11151111 - suggestion for "KG" to "kg" when it's keepcase.
1112+- For flags on affixes: Use a "AFFCOMPSET" flag; means the compound flags of
1113+ the word are not used.
11161114 - Support breakpoint character ? 0xb7 and ignore it? Makes it possible to
11171115 use same wordlist for hyphenation.
11181116 - Compound word is accepted if nr of words is <= COMPOUNDWORDMAX OR nr of
diff -r 57c7403f6599 -r a2b128f7d705 runtime/doc/version7.txt
--- a/runtime/doc/version7.txt Thu Apr 06 20:18:50 2006 +0000
+++ b/runtime/doc/version7.txt Thu Apr 06 20:21:51 2006 +0000
@@ -1,4 +1,4 @@
1-*version7.txt* For Vim version 7.0c. Last change: 2006 Apr 05
1+*version7.txt* For Vim version 7.0c. Last change: 2006 Apr 06
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2385,4 +2385,13 @@
23852385 When a line wraps, 'cursorcolumn' was never displayed past the end of the
23862386 line.
23872387
2388+'autochdir' was only available when compiled with NetBeans and GUI. Now it's
2389+a separate feature, also available in the "big" version.
2390+
2391+Added CTRL-W gf: open file under cursor in new tab page.
2392+
2393+When using the menu in the tab pages line, "New Tab" opens the new tab before
2394+where the click was. Beyond the labels the new tab appears at the end instead
2395+of after the current tab page.
2396+
23882397 vim:tw=78:ts=8:ft=help:norl:
diff -r 57c7403f6599 -r a2b128f7d705 runtime/syntax/help.vim
--- a/runtime/syntax/help.vim Thu Apr 06 20:18:50 2006 +0000
+++ b/runtime/syntax/help.vim Thu Apr 06 20:21:51 2006 +0000
@@ -1,14 +1,14 @@
11 " Vim syntax file
22 " Language: Vim help file
33 " Maintainer: Bram Moolenaar (Bram@vim.org)
4-" Last Change: 2006 Mar 29
4+" Last Change: 2006 Apr 06
55
66 " Quit when a (custom) syntax file was already loaded
77 if exists("b:current_syntax")
88 finish
99 endif
1010
11-syn match helpHeadline "^[-A-Z ]\+[ \t]\+\*"me=e-1
11+syn match helpHeadline "^[-A-Z .]\+[ \t]\+\*"me=e-1
1212 syn match helpSectionDelim "^=\{3,}.*===$"
1313 syn match helpSectionDelim "^-\{3,}.*--$"
1414 syn region helpExample matchgroup=helpIgnore start=" >$" start="^>$" end="^[^ \t]"me=e-1 end="^<"
diff -r 57c7403f6599 -r a2b128f7d705 src/ex_cmds.c
--- a/src/ex_cmds.c Thu Apr 06 20:18:50 2006 +0000
+++ b/src/ex_cmds.c Thu Apr 06 20:21:51 2006 +0000
@@ -3485,7 +3485,7 @@
34853485 foldUpdateAll(curwin);
34863486 #endif
34873487
3488-#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
3488+#ifdef FEAT_AUTOCHDIR
34893489 if (p_acd && curbuf->b_ffname != NULL
34903490 && vim_chdirfile(curbuf->b_ffname) == OK)
34913491 shorten_fnames(TRUE);
@@ -3656,12 +3656,14 @@
36563656 if (p_im)
36573657 need_start_insertmode = TRUE;
36583658
3659-#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
3659+#ifdef FEAT_AUTOCHDIR
36603660 /* Change directories when the acd option is set on. */
36613661 if (p_acd && curbuf->b_ffname != NULL
36623662 && vim_chdirfile(curbuf->b_ffname) == OK)
36633663 shorten_fnames(TRUE);
3664-
3664+#endif
3665+
3666+#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
36653667 if (gui.in_use && curbuf->b_ffname != NULL)
36663668 {
36673669 # ifdef FEAT_SUN_WORKSHOP
diff -r 57c7403f6599 -r a2b128f7d705 src/ex_cmds.h
--- a/src/ex_cmds.h Thu Apr 06 20:18:50 2006 +0000
+++ b/src/ex_cmds.h Thu Apr 06 20:21:51 2006 +0000
@@ -914,19 +914,19 @@
914914 EX(CMD_tabdo, "tabdo", ex_listdo,
915915 NEEDARG|EXTRA|NOTRLCOM),
916916 EX(CMD_tabedit, "tabedit", ex_splitview,
917- BANG|FILE1|RANGE|NOTADR|EDITCMD|ARGOPT|TRLBAR),
917+ BANG|FILE1|RANGE|NOTADR|ZEROR|EDITCMD|ARGOPT|TRLBAR),
918918 EX(CMD_tabfind, "tabfind", ex_splitview,
919- BANG|FILE1|RANGE|NOTADR|EDITCMD|ARGOPT|NEEDARG|TRLBAR),
919+ BANG|FILE1|RANGE|NOTADR|ZEROR|EDITCMD|ARGOPT|NEEDARG|TRLBAR),
920920 EX(CMD_tabfirst, "tabfirst", ex_tabnext,
921921 TRLBAR),
922922 EX(CMD_tabmove, "tabmove", ex_tabmove,
923- RANGE|NOTADR|COUNT|TRLBAR|ZEROR),
923+ RANGE|NOTADR|ZEROR|COUNT|TRLBAR|ZEROR),
924924 EX(CMD_tablast, "tablast", ex_tabnext,
925925 TRLBAR),
926926 EX(CMD_tabnext, "tabnext", ex_tabnext,
927927 RANGE|NOTADR|COUNT|TRLBAR),
928928 EX(CMD_tabnew, "tabnew", ex_splitview,
929- BANG|FILE1|RANGE|NOTADR|EDITCMD|ARGOPT|TRLBAR),
929+ BANG|FILE1|RANGE|NOTADR|ZEROR|EDITCMD|ARGOPT|TRLBAR),
930930 EX(CMD_tabonly, "tabonly", ex_tabonly,
931931 BANG|TRLBAR|CMDWIN),
932932 EX(CMD_tabprevious, "tabprevious", ex_tabnext,
Show on old repository browser