updated for version 7.0104
This commit is contained in:
@ -1,4 +1,4 @@
|
|||||||
*todo.txt* For Vim version 7.0aa. Last change: 2005 Jul 05
|
*todo.txt* For Vim version 7.0aa. Last change: 2005 Jul 07
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
@ -30,6 +30,8 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
|
|||||||
*known-bugs*
|
*known-bugs*
|
||||||
-------------------- Known bugs and current work -----------------------
|
-------------------- Known bugs and current work -----------------------
|
||||||
|
|
||||||
|
Test59 crashes occasionally (but not in the debugger....)
|
||||||
|
|
||||||
Add extra list of file locations. Can be used with:
|
Add extra list of file locations. Can be used with:
|
||||||
:ltag list of matching tags, like :tselect
|
:ltag list of matching tags, like :tselect
|
||||||
|
|
||||||
@ -67,9 +69,6 @@ changed.
|
|||||||
Include new PHP indent script from John Wellesz?
|
Include new PHP indent script from John Wellesz?
|
||||||
http://www.vim.org/scripts/download_script.php?src_id=4330
|
http://www.vim.org/scripts/download_script.php?src_id=4330
|
||||||
|
|
||||||
In Vim indenting use synID() to avoid recognizing "|en" in a string as
|
|
||||||
"|endif".
|
|
||||||
|
|
||||||
autoload:
|
autoload:
|
||||||
- Add a Vim script in $VIMRUNTIME/tools that takes a file with a list of
|
- Add a Vim script in $VIMRUNTIME/tools that takes a file with a list of
|
||||||
script names and a help file and produces a script that can be sourced to
|
script names and a help file and produces a script that can be sourced to
|
||||||
@ -85,7 +84,6 @@ Patch to alternate fold highlighting. (Anthony Iano-Fletcher, 2005 May 12)
|
|||||||
More levels?
|
More levels?
|
||||||
|
|
||||||
Awaiting response:
|
Awaiting response:
|
||||||
- Patch for mch_FullName() also in Vim 6.3? os_mswin.c
|
|
||||||
- Win32: tearoff menu window should have a scrollbar when it's taller than
|
- Win32: tearoff menu window should have a scrollbar when it's taller than
|
||||||
the screen.
|
the screen.
|
||||||
|
|
||||||
|
|||||||
@ -1951,7 +1951,7 @@ lrF_sub(ibuf)
|
|||||||
p = ibuf;
|
p = ibuf;
|
||||||
|
|
||||||
/* Find the boundary of the search path */
|
/* Find the boundary of the search path */
|
||||||
while (++p, ((p = vim_strchr(p, '/')) != NULL) && p[-1] == '\\')
|
while (((p = vim_strchr(p + 1, '/')) != NULL) && p[-1] == '\\')
|
||||||
;
|
;
|
||||||
|
|
||||||
if (p == NULL)
|
if (p == NULL)
|
||||||
|
|||||||
2634
src/po/it.po
2634
src/po/it.po
File diff suppressed because it is too large
Load Diff
@ -59,8 +59,7 @@ test1.out: test1.in
|
|||||||
fi \
|
fi \
|
||||||
else echo $* NO OUTPUT >>test.log; \
|
else echo $* NO OUTPUT >>test.log; \
|
||||||
fi"
|
fi"
|
||||||
# Keep the files to make debugging easier.
|
-rm -rf X* test.ok viminfo
|
||||||
# -rm -rf X* test.ok viminfo
|
|
||||||
|
|
||||||
nolog:
|
nolog:
|
||||||
-echo Test results: >test.log
|
-echo Test results: >test.log
|
||||||
|
|||||||
Reference in New Issue
Block a user