vim - dbext seems to think ( is a sql statement terminator -
i have in .sql file in buffer: create table wh.dbo.customer( id integer not null, cust_name varchar(30) not null, phone_nbr varchar(30) null, primary key(id) ); if in normal mode , cursor on table sould able hit either <leader>se or command gvim :dbexecsqlundercursor , statement should executed dbext should find create , ; , execute script in between. following message: last sql: create table whanalysis.dbo.customer( if highlight script , choose execute sql (visual selection) plugin menu runs fine. what going on? setting in _vimrc ?: set nocompatible source $vimruntime/vimrc_example.vim source $vimruntime/mswin.vim behave mswin set diffexpr=mydiff() " use ctrl-s saving, in insert mode :nnoremap <c-s> :<c-u>update<cr> :vnoremap <c-s> :<c-u>update<cr>gv :cnoremap <c-s> <c-c>:update<cr> :inoremap <c-s> <c-o>:updat...