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/ft_sql.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/ft_sql.txt')
-rw-r--r-- | runtime/doc/ft_sql.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/ft_sql.txt b/runtime/doc/ft_sql.txt index fe3ceba71..e58c0afac 100644 --- a/runtime/doc/ft_sql.txt +++ b/runtime/doc/ft_sql.txt @@ -536,7 +536,7 @@ Example of using column completion: completion window is active. If the completion popup window is not active, a normal <Right> or <Left> will be executed. -Lets look how we can build a SQL statement dynamically. A select statement +Let's look at how we can build a SQL statement dynamically. A select statement requires a list of columns. There are two ways to build a column list using the SQL completion plugin. > One column at a time: @@ -738,8 +738,8 @@ platform you can also use <C-Space> or ALT keys. Many times SQL can be used with different filetypes. For example Perl, Java, PHP, Javascript can all interact with a database. Often you need both the SQL -completion as well as the completion capabilities for the current language you -are editing. +completion and the completion capabilities for the current language you are +editing. This can be enabled easily with the following steps (assuming a Perl file): > 1. :e test.pl |