summaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-02-01 21:47:16 +0000
committerBram Moolenaar <Bram@vim.org>2006-02-01 21:47:16 +0000
commitb8a7b560b1c25a059dfb57cbe40f0a3f98ed8e97 (patch)
tree090b45a23993b236f0a8c18fd2297f3142194066 /runtime/doc
parent280f126ef03c4e7d71d2c8341d661d3e37157851 (diff)
downloadvim-git-b8a7b560b1c25a059dfb57cbe40f0a3f98ed8e97.tar.gz
updated for version 7.0191
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/cmdline.txt4
-rw-r--r--runtime/doc/index.txt2
-rw-r--r--runtime/doc/insert.txt38
-rw-r--r--runtime/doc/quickref.txt2
4 files changed, 43 insertions, 3 deletions
diff --git a/runtime/doc/cmdline.txt b/runtime/doc/cmdline.txt
index 2fc068f2c..65cdcb3cd 100644
--- a/runtime/doc/cmdline.txt
+++ b/runtime/doc/cmdline.txt
@@ -1,4 +1,4 @@
-*cmdline.txt* For Vim version 7.0aa. Last change: 2006 Jan 19
+*cmdline.txt* For Vim version 7.0aa. Last change: 2006 Feb 01
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -746,7 +746,7 @@ Note: these are typed literally, they are not special keys!
<amatch> when executing autocommands, is replaced with the match for
which this autocommand was executed. It differs from
<afile> only when the file name isn't used to match with
- (for FileType and Syntax events).
+ (for FileType, Syntax and SpellFileMissing events).
<sfile> when executing a ":source" command, is replaced with the
file name of the sourced file;
when executing a function, is replaced with
diff --git a/runtime/doc/index.txt b/runtime/doc/index.txt
index 919e27f9a..5cc2f411a 100644
--- a/runtime/doc/index.txt
+++ b/runtime/doc/index.txt
@@ -1250,6 +1250,8 @@ The commands are sorted on the non-optional part of their name.
|:lpfile| :lpf[ile] go to last location in previous file
|:lrewind| :lr[ewind] go to the specified location, default first one
|:ls| :ls list all buffers
+|:ltag| :lt[ag] jump to tag and add matching tags to the
+ location list
|:lunmap| :lu[nmap] like ":unmap!" but includes Lang-Arg mode
|:lwindow| :lw[indow] open or close location window
|:move| :m[ove] move lines
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt
index 92d85e41f..88be8cbf3 100644
--- a/runtime/doc/insert.txt
+++ b/runtime/doc/insert.txt
@@ -1,4 +1,4 @@
-*insert.txt* For Vim version 7.0aa. Last change: 2006 Jan 29
+*insert.txt* For Vim version 7.0aa. Last change: 2006 Jan 30
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1128,6 +1128,42 @@ Note: When used first time completion menu will be shown with little delay
- this is time needed for loading of data file.
+JAVASCRIPT *ft-javascript-omni*
+
+Completion of most elements of JavaScript language and HTML DOM.
+
+Complete:
+
+- variables
+- function name
+- function arguments
+- properties of variables trying to detect type of variable
+- complete HTML DOM objects and properties depending on context
+- keywords of language
+
+Completion works in separate JavaScript files (&ft==javascript) and inside of
+<script> tag of (X)HTML. Note: scanning will be only in scope of current tag.
+At the moment separate files are not taken into account.
+
+DOM compatibility
+
+At the moment (beginning of 2006) there are two main browsers - MS Internet
+Explorer and Mozilla Firefox. These two applications are covering over 90% of
+market. Theoretically standards are created by W3C organisation
+(http://www.w3c.org) but they are not always followed/implemented.
+
+ IE FF W3C Omni completion ~
+ +/- +/- + + ~
+ + + - + ~
+ + - - - ~
+ - + - - ~
+
+Regardless from state of implementation in browsers but if element is defined
+in standards, completion plugin will place element in suggestion list. When
+both major engines implemented element, even if this is not in standards it
+will be suggested. All other elements are not placed in suggestion list.
+
+
SYNTAX *ft-syntax-omni*
This uses the current syntax highlighting for completion. It can be used for
diff --git a/runtime/doc/quickref.txt b/runtime/doc/quickref.txt
index 251fcc2b5..ffa3b07fc 100644
--- a/runtime/doc/quickref.txt
+++ b/runtime/doc/quickref.txt
@@ -211,6 +211,8 @@ N is used to indicate an optional count that can be given before the command.
|:ts| :ts[elect][!] [tag] List matching tags and select one to jump to
|:tjump| :tj[ump][!] [tag] Jump to tag [tag] or select from list when
there are multiple matches
+|:ltag| :lt[ag][!] [tag] Jump to tag [tag] and add matching tags to the
+ location list.
|:tags| :tags Print tag list
|CTRL-T| N CTRL-T Jump back from Nth older tag in tag list