码迷,mamicode.com
首页 > 系统相关 > 详细

Vim备忘

时间:2019-04-29 21:16:27      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:gcc   type   -o   .exe   syn   std   定位   表示   搜索   

Vim备忘

下载

gVim 8.1 for Windows

命令

k或↑             上移
j或↓             下移
h或←             左移
l或→             右移

w                右移光标到下一个字的开头;
e                右移光标到一个字的末尾;
0                数字0,左移光标到本行的开始;
$                右移光标,到本行的末尾;
n                n表示数字,按下数字后按空格键,光标右移n个字符,会跨行移动;
/str1            正向搜索字符串 str1;
o                插入空白新行,并跳转光标;
+                光标移动到非空格符的下一行;
-                光标移动到非空格符的上一行n;

gg               将光标定位到文件第一行起始位置
yy               复制一行  
dd               剪切一行
y                复制
p                粘贴
u                撤销

分屏

Ctrl+w, s       水平分屏
Ctrl+w, v       垂直分屏
Ctrl+w, c       关闭当前分屏窗口

.vimrc配置

来自mhy12345大佬

"ctags
set tags=tags;
set autochdir

"encoding
set fileencodings=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936
set termencoding=utf-8
set encoding=utf-8

"functions
function Compile()
        if &filetype == 'cpp'
                exec "!g++ % -o %< -g -Wall -Wextra -Wconversion -std=c++11"
        elseif &filetype == 'c'
                exec "!gcc % -o %< -g -Wall -Wextra -Wconversion"
        elseif &filetype == 'pas'
                exec "!fpc % -g"
        elseif &filetype == 'tex'
                exec "!xelatex '%'"
        elseif &filetype == 'java'
                exec "!javac %"
        elseif &filetype == 'scss'
                exec "!sass % > %<.css"
        endif
endfunction

function Debug()
        if &filetype == 'cpp' 
                exec "!gdb ./%<"
        elseif &filetype == 'tex'
                exec "!okular './%<.pdf'"
        elseif &filetype == 'java'
                exec "!jdb %<"
        endif
endfunction

function Run()
        if &filetype == 'cpp'
                exec "!time ./%<"
        elseif &filetype == 'tex'
                exec "!okular './%<.pdf'"
        elseif &filetype == 'java'
                exec "!java %<"
        elseif &filetype == 'ruby'
                exec "!ruby %"
        elseif &filetype == 'html'
                exec "!firefox %"
        elseif &filetype == 'php'
                exec "!php %"
        elseif &filetype == 'sh'
                exec "!bash %"
        endif
endfunction

"basic settings
set hlsearch
set smartindent
set number
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set mouse=a
syntax on
filetype plugin indent on
imap jj <esc>
map <F9> : call Compile() <CR>
map <F5> : call Debug() <CR>
map <F6> : call Run() <CR>
map <F8> : ! g++ % -o %< -O2 <CR>
map <F12> : ! subl ./% <CR>
map <F2> : ! python % <CR>
colors evening

Vim备忘

标签:gcc   type   -o   .exe   syn   std   定位   表示   搜索   

原文地址:https://www.cnblogs.com/santiego/p/10792534.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!