aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/ft_sql.txt
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-02-27 11:56:30 +0100
committerGitHub <noreply@github.com>2022-02-27 11:56:30 +0100
commit9d3370a14429587303d3abe6d4ece71342f5e4b5 (patch)
treeabff6a0068dc2809c3f43a4af3b13fe037498b42 /runtime/doc/ft_sql.txt
parent7dd2b0b79a34a7b3560971bc7c1466621134e469 (diff)
downloadrneovim-9d3370a14429587303d3abe6d4ece71342f5e4b5.tar.gz
rneovim-9d3370a14429587303d3abe6d4ece71342f5e4b5.tar.bz2
rneovim-9d3370a14429587303d3abe6d4ece71342f5e4b5.zip
vim-patch:c51cf0329809 (#17530)
Update runtime files. https://github.com/vim/vim/commit/c51cf0329809c7ae946c59d6f56699227efc9d1b
Diffstat (limited to 'runtime/doc/ft_sql.txt')
-rw-r--r--runtime/doc/ft_sql.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/doc/ft_sql.txt b/runtime/doc/ft_sql.txt
index 53a99a9e1d..fccbbce17f 100644
--- a/runtime/doc/ft_sql.txt
+++ b/runtime/doc/ft_sql.txt
@@ -109,8 +109,8 @@ must be configurable. The filetype plugin attempts to define many of the
standard objects, plus many additional ones. In order to make this as
flexible as possible, you can override the list of objects from within your
|vimrc| with the following: >
- let g:ftplugin_sql_objects = 'function,procedure,event,table,trigger' .
- \ ',schema,service,publication,database,datatype,domain' .
+ let g:ftplugin_sql_objects = 'function,procedure,event,table,trigger' ..
+ \ ',schema,service,publication,database,datatype,domain' ..
\ ',index,subscription,synchronization,view,variable'
The following |Normal| mode and |Visual| mode maps have been created which use
@@ -131,10 +131,10 @@ Repeatedly pressing ]} will cycle through each of these create statements: >
create index i1 on t1 (c1);
The default setting for g:ftplugin_sql_objects is: >
- let g:ftplugin_sql_objects = 'function,procedure,event,' .
- \ '\\(existing\\\\|global\\s\\+temporary\\s\\+\\)\\\{,1}' .
- \ 'table,trigger' .
- \ ',schema,service,publication,database,datatype,domain' .
+ let g:ftplugin_sql_objects = 'function,procedure,event,' ..
+ \ '\\(existing\\\\|global\\s\\+temporary\\s\\+\\)\\\{,1}' ..
+ \ 'table,trigger' ..
+ \ ',schema,service,publication,database,datatype,domain' ..
\ ',index,subscription,synchronization,view,variable'
The above will also handle these cases: >