comparison runtime/doc/ft_sql.txt @ 21499:3a1ed539ae2a

Update runtime files. Commit: https://github.com/vim/vim/commit/2547aa930b59f5e2bcb70e81d5a57ed461e59b4f Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 26 17:00:44 2020 +0200 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Jul 2020 17:15:05 +0200
parents af69c9335223
children e69e7133c9cf
comparison
equal deleted inserted replaced
21498:134699e667ee 21499:3a1ed539ae2a
310 Windows 310 Windows
311 $VIM/vimfiles/syntax/sqlite.vim 311 $VIM/vimfiles/syntax/sqlite.vim
312 $VIM/vimfiles/indent/sqlite.vim 312 $VIM/vimfiles/indent/sqlite.vim
313 313
314 No changes are necessary to the SQLSetType function. It will automatically 314 No changes are necessary to the SQLSetType function. It will automatically
315 pickup the new SQL files and load them when you issue the SQLSetType command. 315 pick up the new SQL files and load them when you issue the SQLSetType command.
316 316
317 317
318 ============================================================================== 318 ==============================================================================
319 4. OMNI SQL Completion *sql-completion* 319 4. OMNI SQL Completion *sql-completion*
320 *omni-sql-completion* 320 *omni-sql-completion*
517 beginning with those characters. > 517 beginning with those characters. >
518 518
519 4.3.2 Column Completion: *sql-completion-columns* 519 4.3.2 Column Completion: *sql-completion-columns*
520 520
521 The SQL completion plugin can also display a list of columns for particular 521 The SQL completion plugin can also display a list of columns for particular
522 tables. The column completion is trigger via <C-C>c. 522 tables. The column completion is triggered via <C-C>c.
523 523
524 NOTE: The following example uses <Right> to trigger a column list while 524 NOTE: The following example uses <Right> to trigger a column list while
525 the popup window is active. 525 the popup window is active.
526 526
527 Example of using column completion: 527 Example of using column completion:
725 If you do not wish the default maps created or the key choices do not work on 725 If you do not wish the default maps created or the key choices do not work on
726 your platform (often a case on *nix) you define the following variable in 726 your platform (often a case on *nix) you define the following variable in
727 your |vimrc|: > 727 your |vimrc|: >
728 let g:omni_sql_no_default_maps = 1 728 let g:omni_sql_no_default_maps = 1
729 729
730 Do no edit ftplugin/sql.vim directly! If you change this file your changes 730 Do not edit ftplugin/sql.vim directly! If you change this file your changes
731 will be over written on future updates. Vim has a special directory structure 731 will be over written on future updates. Vim has a special directory structure
732 which allows you to make customizations without changing the files that are 732 which allows you to make customizations without changing the files that are
733 included with the Vim distribution. If you wish to customize the maps 733 included with the Vim distribution. If you wish to customize the maps
734 create an after/ftplugin/sql.vim (see |after-directory|) and place the same 734 create an after/ftplugin/sql.vim (see |after-directory|) and place the same
735 maps from the ftplugin/sql.vim in it using your own key strokes. <C-C> was 735 maps from the ftplugin/sql.vim in it using your own key strokes. <C-C> was