vim note write】的更多相关文章

vim的配置文件 ~/.vimrc       用户的默认配置文件 ~/.vim/plugin/   用户的默认脚本文件的存放文件夹 ~/.vim/ftplugin/ 用户的默认文件类型相关脚本文件的存放文件夹 vim提供的编程支持 文本信息(行号.文件名称等) 代码缩进 语法高亮 高速定位 标记位置 全文搜索 补全 多文件编辑 多窗体编辑 函数列表 文件列表 函数跳转 语法错误 字符集的编码 二进制查看 等等... 初试vim 在终端以root启动 输入vim命令 显示vim首页 :r fil…
2016-1-22 vim plugin collections: (参考 https://www.youtube.com/watch?v=0QFR-_wUoA0) vim-pathogen  插件管理工具 vim-powerline 漂亮的底部状态列 SelectColors 颜色主题选择 snipmate  自动生成样式代码 vim-css-color  颜色相关的代码展示出对应的颜色 surround  改变word外面的字符,比如把“screen”换成‘screen’ vim-inden…
'vim' go into the vim mode 'i' 'a' 's'    is means insert mode 'v' is means visual mode 'esc' is means back to normal mode j down k up h left l right…
:new 文件名.词尾 新文件. :e 文件名 打开文件. :w 文件名.txt 保存文件. :wq 保存并退出. :x 辍学.假设文件更改被保存 版权声明:本文博主原创文章,博客,未经同意不得转载.…
Ctrl+w  Ctrl+v  will create a new window on the right side of the current window Ctrl+w  Ctrl+s   will create a new window on the down side of the current window (Ctrl+w)^2       press twice, go to the other window (g)^2 beginning of the page (G)^2 a…
Try: :vert sb N which will open a left vertical split (by default, unless you have modified some options). To open a split to the right, on the other hand: :vert belowright sb N You can use :split and :vsplit to divide the current area into two windo…
.vimrc 的设置 $HOME/.vimrc 的普通设置,例如以下. set nocompatible "" not compatible with VI "" Encodings and fonts set encoding=utf-8 set fileencoding=utf-8 set fileencodings=ucs-bom,gb18030,gbk,gb2312,cp936 set termencoding=utf-8 set langmenu=zh_C…
:e          edit :edit       edit :e.         edit current file '.'  a dot is means current : w write : x save &exit : q quit : q! quit anyway shift * high the current word w   forword b backword 版权声明:本文博主原创文章,博客,未经同意不得转载.…
模式介绍: Vim具备6种基本模式和5中派生模式. 普通模式 启动后的默认模式,用于:移动光标.删除文本等待,常用命令: dd:删除当前行. [number]dd:连续执行number对应次数的dd命令,如:2dd等于连续执行两次dd. d[移动命令]:删除当前行到移动命令移动范围之间的所有行,如:dj等于2dd. 按a(append)或i(insert)进入插入模式. 插入模式 键盘的输入会向文本缓冲区中插入文本.按ESC键回到普通模式. 可视模式 为了便于选择文本,Vim引入了可视模式.在普…
Vim Note 很早就知道vim是一个很强大的编辑器,也用了很久.不过没有系统的总结过,这次就写个笔记方便以后看看(本文在vim下编辑完成) 第一印象 打开vim第一感觉就是无从下手,相信大多数人和我差不多吧. vim有很多的模式,刚启动在Normal模式下,按下'i'后就会进入Inserts模式.这个模式下就可以输入文字进行编辑. 要想退回Normal就按'ESC',Normal模式下可以干很多事: x:删除光标所在字符 :wq:保存并推出(:q是退出:w是保存) dd:删除这一行,并将这一…