Home

Awesome

vim-SQL-UPPER

Uppercase SQL keywords without the need of holding <kbd>Shift</kbd> or <kbd>CAPS LOCK</kbd>

Installation

vim-plug:

Plug 'Jorengarenar/vim-SQL-UPPER'

Vim's packages

cd ~/.vim/pack/plugins/start
git clone git://github.com/Jorengarenar/vim-SQL-UPPER.git

Usage

When you type an SQL keyword in an SQL file, it will be automatically uppercased after you finish writting it.

Words in comments and strings will be ignored.

Configuration

There is one variable, g:SQL_UPPER. Default value is syntax

ValueDescription
0Disable auto-uppering
listYou can provide your own list of keywords, e.g. let g:SQL_UPPER = [ "select", "from" ]
"syntax"Keywords returned by syntaxcomplete#OmniSyntaxList() function
"drupal"Keywords from Drupal's List of SQL reserved words
"wikipedia_all"All keywords from Wikipedia's list of SQL reserved word
"wikipedia_sql2023"Keywords from Wikipedia's list of SQL reserved word marked as 'In SQL:2023'