From: Bram Moolenaar Date: Tue, 19 Jul 2005 22:21:12 +0000 (+0000) Subject: updated for version 7.0110 X-Git-Tag: v7.0110~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ff6f061a9df95bb26dc7a33a407f5e99f6016912;p=vim updated for version 7.0110 --- diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index 7bd990411..59b52fd0e 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -1,4 +1,4 @@ -*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 @@ -30,8 +30,6 @@ be worked on, but only if you sponsor Vim development. See |sponsor|. *known-bugs* -------------------- Known bugs and current work ----------------------- -"at" and "it" text objects: recognize HTML/SGML/XML tag pairs asdf - ":e *.foo" completion with file name starting with "+" should be escaped. VMS patch for term.c also in Vim 6.3 (Zoltan Arpadffy) diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt index 4b7a09f0f..49968553d 100644 --- a/runtime/doc/version7.txt +++ b/runtime/doc/version7.txt @@ -1,4 +1,4 @@ -*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 @@ -289,6 +289,9 @@ i", i' and i' (Taro Muraoka) CTRL-W In the quickfix window: opens a new window to show the location of the error under the cursor. +|at| and |it| text objects select a block of text between HTML or XML tags. + + Options: ~ 'completefunc' The name of a function used for user-specified Insert diff --git a/src/proto/search.pro b/src/proto/search.pro index 3d934f2af..15e8b3007 100644 --- a/src/proto/search.pro +++ b/src/proto/search.pro @@ -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_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_tagblock __ARGS((oparg_T *oap, long count, int include)); 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 linewhite __ARGS((linenr_T lnum));