随笔分类 -  Vim

摘要:Making vim an IDE is an exiting thing. At first, make sure you have installed essential tools. Let’s take ubuntu as an example. vim: sudo apt-get install vim ctag: sudo apt-get install exuberant-cta... 阅读全文
posted @ 2015-12-28 20:11 luckysimple 阅读(377) 评论(0) 推荐(0)
摘要:Vim完全可以用键盘进行操作。本文将常用的按键归纳总结。 第一部分:一般模式可用的按钮,如光标移动、复制粘贴、查找替换等 移动光标的方法 h, j, k, l 光标向左,下,上,右移动 Ctrl + f / b 屏幕向下/上移动 Ctrl + d / u 屏幕向下/上移动半页 0 移动到一行的最前面 $ 移动到一行的最后面字符 H / M / L 移动到屏幕最上方/中央/最下方... 阅读全文
posted @ 2015-12-25 15:15 luckysimple 阅读(4997) 评论(0) 推荐(0)
摘要:Vundle is short for Vim bundle and is a Vim plugin manager. Vundle allows you to keep track of and configure your plugins right in the .vimrc install configured plugins (a.k.a. scripts/bundle) upda... 阅读全文
posted @ 2015-12-23 17:18 luckysimple 阅读(347) 评论(0) 推荐(0)
摘要:Molokai Color Scheme for VimI prefer molokai’s dark grey background.Installation with VundleAdd the following to your vimrc.Bundle 'molokai'" Set colo... 阅读全文
posted @ 2015-12-20 22:32 luckysimple 阅读(906) 评论(0) 推荐(0)
摘要:pathogen.vim Manage your 'runtimepath' with ease. In practical terms, pathogen.vim makes it super easy to install plugins and runtime files in their own private directories. Installation Install to ~/... 阅读全文
posted @ 2015-12-20 18:58 luckysimple 阅读(218) 评论(0) 推荐(0)
摘要:Vim tutor makes you know enough commands to easily use Vim. If you wanna get full version of vim tutor, execute vimtutor in the shell. Lesson 1 The cursor is moved using either the arrow keys or the... 阅读全文
posted @ 2015-12-20 12:31 luckysimple 阅读(214) 评论(0) 推荐(0)