summaryrefslogtreecommitdiffstats
path: root/runtime/doc/insert.txt
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/insert.txt
parent280f126ef03c4e7d71d2c8341d661d3e37157851 (diff)
updated for version 7.0191
Diffstat (limited to 'runtime/doc/insert.txt')
-rw-r--r--runtime/doc/insert.txt38
1 files changed, 37 insertions, 1 deletions
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt
index 92d85e41f6..88be8cbf31 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