工具使用经验
fushcpc
这个作者很懒,什么都没留下…
展开
-
Find Oracle JDBC driver in Maven repository
I want to add the oracle jdbc driver to my project as dependency (runtime scope) - ojdbc14. In MVNrepository site the dependency to put in the POM is: com.oracle ojdbc14 10.2.0.3.0 ...2013-01-18 00:32:19 · 132 阅读 · 0 评论 -
让VIM不生成备份文件
默认情况下使用Vim编程,在修改文件后系统会自动生成一个带~的备份文件,看上去又乱又讨人厌。 怎么让Vim不自动生成这些备份文件呢? 1. 找到你的Vim安装目录,如果是在Windows下默认路径安装的,应该是在C:\Program Files\Vim\ 2. 找到这个文件:vimrc_example.vim ,我的这个文件是在vim70文件夹下,具体还要看你安装的是什么版本的。 ...原创 2013-07-28 23:26:25 · 255 阅读 · 0 评论 -
VIM notes
dw: delete current word, but first thing for this command is the cursor has to be the first character of the word. d$: delete to the end of the line 0: move to the end of the line. d3w: delete the ...原创 2013-08-21 23:01:37 · 138 阅读 · 0 评论