diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-22 15:37:44 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-22 15:37:44 +0200 |
commit | 06b5d5167a01c9fbf9661fb0c03bbd0a77cecae6 (patch) | |
tree | 4e4054360a178c58b1fb4e48bb51955f984a6b66 /runtime/doc/insert.txt | |
parent | db7c686ea58323f8e8550dea287eac7ea4964a55 (diff) | |
download | vim-git-06b5d5167a01c9fbf9661fb0c03bbd0a77cecae6.tar.gz |
Add the settabvar() and gettabvar() functions.
Various runtime file updates.
Diffstat (limited to 'runtime/doc/insert.txt')
-rw-r--r-- | runtime/doc/insert.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt index 563c41126..f221fbc9a 100644 --- a/runtime/doc/insert.txt +++ b/runtime/doc/insert.txt @@ -1358,7 +1358,7 @@ Script completes: - function names with additional info: - in case of built-in functions list of possible arguments and after | type data returned by function - - in case of user function arguments and name of file were function was + - in case of user function arguments and name of file where function was defined (if it is not current file) - constants names @@ -1446,8 +1446,8 @@ a look at the PHP filetype to see how this works. If you edit a file called, index.php, run the following command: > :syntax list -First thing you will notice is there are many different syntax groups. The -PHP language can include elements from different languages like HTML, +The first thing you will notice is that there are many different syntax groups. +The PHP language can include elements from different languages like HTML, JavaScript and many more. The syntax plugin will only include syntax groups that begin with the filetype, "php", in this case. For example these syntax groups are included by default with the PHP: phpEnvVar, phpIntVar, |