aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload/sqlcomplete.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2014-08-24 22:13:56 -0400
committerJustin M. Keyes <justinkz@gmail.com>2014-08-24 22:13:56 -0400
commit92d27b7290914585f11d3a07e9bbbc504b8c9ca1 (patch)
tree6063d3d94af147d2d48d70c8201ef3d81a3c9787 /runtime/autoload/sqlcomplete.vim
parent3623a028263fa321f0790fe1132ac2934d6d5dc7 (diff)
parenta1582a841b2864ad20c22cc18b04010f9a813128 (diff)
downloadrneovim-92d27b7290914585f11d3a07e9bbbc504b8c9ca1.tar.gz
rneovim-92d27b7290914585f11d3a07e9bbbc504b8c9ca1.tar.bz2
rneovim-92d27b7290914585f11d3a07e9bbbc504b8c9ca1.zip
Merge pull request #1111 from epmatsw/spellcheck2
More Typo Fixes
Diffstat (limited to 'runtime/autoload/sqlcomplete.vim')
-rw-r--r--runtime/autoload/sqlcomplete.vim6
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)