Lines Matching refs:C
338 imap <buffer> <C-C>a <C-\><C-O>:call sqlcomplete#Map('syntax')<CR><C-X><C-O>
339 imap <buffer> <C-C>k <C-\><C-O>:call sqlcomplete#Map('sqlKeyword')<CR><C-X><C-O>
340 imap <buffer> <C-C>f <C-\><C-O>:call sqlcomplete#Map('sqlFunction')<CR><C-X><C-O>
341 imap <buffer> <C-C>o <C-\><C-O>:call sqlcomplete#Map('sqlOption')<CR><C-X><C-O>
342 imap <buffer> <C-C>T <C-\><C-O>:call sqlcomplete#Map('sqlType')<CR><C-X><C-O>
343 imap <buffer> <C-C>s <C-\><C-O>:call sqlcomplete#Map('sqlStatement')<CR><C-X><C-O>
345 The use of "<C-C>" can be user chosen by using the following in your |.vimrc|
347 let g:ftplugin_sql_omni_key = '<C-C>'
351 imap <buffer> <C-C>k <C-\><C-O>:call sqlcomplete#Map('sqlKeyword')<CR><C-X><C-O>
352 imap <buffer> <C-C>k <C-\><C-O>:call sqlcomplete#Map('sqlKeyword\w*')<CR><C-X><C-O>
357 <C-C>k - Your choice of key map
358 <C-\><C-O> - Execute one command, return to Insert mode
377 <C-X><C-O> - Trigger the standard omni completion key stroke.
426 for each group (where <C-C> means hold the CTRL key down while pressing
428 Table List - <C-C>t
429 - <C-X><C-O> (the default map assumes tables)
430 Stored Procedure List - <C-C>p
431 View List - <C-C>v
432 Column List - <C-C>c
452 imap <buffer> <C-C>R <C-\><C-O>:call sqlcomplete#Map('ResetCache')<CR><C-X><C-O>
472 <C-C>s (show SQL statements)
477 <C-Space>t
480 * fr<C-C>a (show all syntax items)
488 DECLARE customer_id <C-C>T <-- Choose a type from the list
506 Assuming you have followed the dbext-tutorial you can press <C-C>t to
508 list. After the list is displayed press <C-W>. This will remove both the
513 Press <C-C>t to display a list of tables from within the database you
522 tables. The column completion is triggered via <C-C>c.
528 - Press <C-C>t again to display the list of tables.
537 change the schema of a cached table you can press <C-C>R, which
547 < 1. After typing SELECT press <C-C>t to display a list of tables.
551 5. Enter a "," and press <C-C>c. Generating a column list
554 In this step, since we are pressing <C-C>c without the cursor
559 < 1. After typing SELECT press <C-C>t to display a list of tables.
562 4. Press <C-C>l to request a comma separated list of all columns
570 7. Step 3 and 4 can be replaced by pressing <C-C>L, which has
571 a <C-Y> embedded in the map to choose the currently highlighted
585 "customer" table, you can press either <C-C>c or <C-X><C-O>. This will
595 Similar to the table list, <C-C>p, will display a list of stored
600 Similar to the table list, <C-C>v, will display a list of views in the
617 column list. By default the map is <C-C>l. When generating
674 <C-C>a
676 <C-C>k
678 <C-C>f
680 <C-C>o
682 <C-C>T
684 <C-C>s
691 <C-C>t
693 <C-C>p
695 <C-C>v
697 <C-C>c
699 <C-C>l
701 <C-C>L
716 <C-C>R
735 maps from the ftplugin/sql.vim in it using your own key strokes. <C-C> was
737 platform you can also use <C-Space> or ALT keys.
759 "syntax#Complete". Pressing <C-X><C-O> will display the omni popup containing
770 begin with <C-C>, the maps will toggle the |'omnifunc'| when in use. So you
771 can use <C-X><C-O> to continue using the completion for Perl (using the syntax
772 completion plugin) and <C-C> to use the SQL completion features.