Skip to content
Snippets Groups Projects
Commit ff6f061a authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.0110

parent d6c04cd6
No related merge requests found
*todo.txt* For Vim version 7.0aa. Last change: 2005 Jul 18 *todo.txt* For Vim version 7.0aa. Last change: 2005 Jul 19
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
...@@ -30,8 +30,6 @@ be worked on, but only if you sponsor Vim development. See |sponsor|. ...@@ -30,8 +30,6 @@ 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 -----------------------
"at" and "it" text objects: recognize HTML/SGML/XML tag pairs <b>asdf</b>
":e *.foo" completion with file name starting with "+" should be escaped. ":e *.foo" completion with file name starting with "+" should be escaped.
VMS patch for term.c also in Vim 6.3 (Zoltan Arpadffy) VMS patch for term.c also in Vim 6.3 (Zoltan Arpadffy)
......
*version7.txt* For Vim version 7.0aa. Last change: 2005 Jul 13 *version7.txt* For Vim version 7.0aa. Last change: 2005 Jul 20
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
...@@ -289,6 +289,9 @@ i", i' and i' (Taro Muraoka) ...@@ -289,6 +289,9 @@ i", i' and i' (Taro Muraoka)
CTRL-W <Enter> In the quickfix window: opens a new window to show the CTRL-W <Enter> In the quickfix window: opens a new window to show the
location of the error under the cursor. location of the error under the cursor.
|at| and |it| text objects select a block of text between HTML or XML tags.
Options: ~ Options: ~
'completefunc' The name of a function used for user-specified Insert 'completefunc' The name of a function used for user-specified Insert
......
...@@ -26,6 +26,7 @@ int bckend_word __ARGS((long count, int bigword, int eol)); ...@@ -26,6 +26,7 @@ int bckend_word __ARGS((long count, int bigword, int eol));
int current_word __ARGS((oparg_T *oap, long count, int include, int bigword)); int current_word __ARGS((oparg_T *oap, long count, int include, int bigword));
int current_sent __ARGS((oparg_T *oap, long count, int include)); int current_sent __ARGS((oparg_T *oap, long count, int include));
int current_block __ARGS((oparg_T *oap, long count, int include, int what, int other)); int current_block __ARGS((oparg_T *oap, long count, int include, int what, int other));
int current_tagblock __ARGS((oparg_T *oap, long count, int include));
int current_par __ARGS((oparg_T *oap, long count, int include, int type)); int current_par __ARGS((oparg_T *oap, long count, int include, int type));
int current_quote __ARGS((oparg_T *oap, long count, int include, int quotechar)); int current_quote __ARGS((oparg_T *oap, long count, int include, int quotechar));
int linewhite __ARGS((linenr_T lnum)); int linewhite __ARGS((linenr_T lnum));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment