diff options
author | Will Stamper <epmatsw@gmail.com> | 2014-08-24 16:28:39 -0500 |
---|---|---|
committer | Will Stamper <epmatsw@gmail.com> | 2014-08-24 18:40:06 -0500 |
commit | a1582a841b2864ad20c22cc18b04010f9a813128 (patch) | |
tree | aab5efa74f5a4ee1df5f4a6dc864771ec4ec8842 /runtime/autoload/sqlcomplete.vim | |
parent | ae1788d55d5f465891e1b72f7d49101b96e8b013 (diff) | |
download | rneovim-a1582a841b2864ad20c22cc18b04010f9a813128.tar.gz rneovim-a1582a841b2864ad20c22cc18b04010f9a813128.tar.bz2 rneovim-a1582a841b2864ad20c22cc18b04010f9a813128.zip |
Spelling fixes
Diffstat (limited to 'runtime/autoload/sqlcomplete.vim')
-rw-r--r-- | runtime/autoload/sqlcomplete.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/autoload/sqlcomplete.vim b/runtime/autoload/sqlcomplete.vim index 9326c15bb3..4a8863e15f 100644 --- a/runtime/autoload/sqlcomplete.vim +++ b/runtime/autoload/sqlcomplete.vim @@ -588,7 +588,7 @@ function! sqlcomplete#DrillIntoTable() else " If the popup is not visible, simple perform the normal " key behaviour. - " Must use exec since they key must be preceeded by "\" + " Must use exec since the key must be preceded by "\" " or feedkeys will simply push each character of the string " rather than the "key press". exec 'call feedkeys("\'.g:ftplugin_sql_omni_key_right.'", "n")' @@ -605,7 +605,7 @@ function! sqlcomplete#DrillOutOfColumns() else " If the popup is not visible, simple perform the normal " key behaviour. - " Must use exec since they key must be preceeded by "\" + " Must use exec since the key must be preceded by "\" " or feedkeys will simply push each character of the string " rather than the "key press". exec 'call feedkeys("\'.g:ftplugin_sql_omni_key_left.'", "n")' @@ -831,7 +831,7 @@ function! s:SQLCGetColumns(table_name, list_type) " Start characterwise visual mode " Advance right one character - " Search foward until one of the following: + " Search forward until one of the following: " 1. Another select/update/delete statement " 2. A ; at the end of a line (the delimiter) " 3. The end of the file (incase no delimiter) |