vim下快速输入sql语句
最近没事干,看了《Hacking Vim》,自己总觉一下,写了一个快速输入sql的脚本abbr,通过别名以及字典建立快速输入sql:
(注意斜线被替换为全角的/).
abbreviate sqls select * from where = : ;
abbreviate sqlu update set = : where = : ;
abbreviate sqld delete from where = : ;
nnoremap /c/+>/e
inoremap /c/+>/e
nnoremap /c/+>/e
inoremap /c/+>/e
set dictionary+=$VIMRUNTIME/dict/tables.txt
set dictionary+=$VIMRUNTIME/dict/fileds.txt
tables.txt 与fields.txt 可以从数据库获得。
ctrl+x ,ctrl+k 启动字典。
[@more@]
时间: 2024-09-28 12:53:57