diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-24 19:03:31 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-27 09:21:31 -0400 |
commit | 527d108223e50c3fab034b582c102475b16c016e (patch) | |
tree | e355fe3e9781a228503bd038f40418063392edb7 /runtime/doc/ft_sql.txt | |
parent | 3e47e529b0354dbd665202bbc4f485a5160206bf (diff) | |
download | rneovim-527d108223e50c3fab034b582c102475b16c016e.tar.gz rneovim-527d108223e50c3fab034b582c102475b16c016e.tar.bz2 rneovim-527d108223e50c3fab034b582c102475b16c016e.zip |
vim-patch:664f3cf3f21d
Runtime file updates.
https://github.com/vim/vim/commit/664f3cf3f21d3699bfd179c318ef5c869c085648
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 324e2e44af..f0a70d993e 100644 --- a/runtime/doc/ft_sql.txt +++ b/runtime/doc/ft_sql.txt @@ -338,8 +338,8 @@ The defaults static maps are: > imap <buffer> <C-C>T <C-\><C-O>:call sqlcomplete#Map('sqlType')<CR><C-X><C-O> imap <buffer> <C-C>s <C-\><C-O>:call sqlcomplete#Map('sqlStatement')<CR><C-X><C-O> -The use of "<C-C>" can be user chosen by using the following in your -|init.vim| as it may not work properly on all platforms: > +The use of "<C-C>" can be user chosen by using the following in your |init.vim| +as it may not work properly on all platforms: > let g:ftplugin_sql_omni_key = '<C-C>' > The static maps (which are based on the syntax highlight groups) follow this @@ -518,7 +518,7 @@ The SQL completion plugin can also display a list of columns for particular tables. The column completion is trigger via <C-C>c. NOTE: The following example uses <Right> to trigger a column list while - the popup window is active. + the popup window is active. Example of using column completion: - Press <C-C>t again to display the list of tables. |