_vimrc(VimScript脚本语言学习)

Windows下

syntax on "高亮

"缩进
set cindent "set cin
set smartindent "set si
set autoindent "set ai
set tabstop=4 "set ts=4
set shiftwidth=4 "set sw=4
set softtabstop=4 "set sts=4

set mouse=a "Linux鼠标使用

"行号
set number "set nu

set backspace=2 "set bs=2

"共享剪切板
set clipboard=unnamed

set go= "把Win上Vim上部的一行很丑的去掉
behave mswin
set cursorline
set ruler
set autoread
set nobackup
color solarized
set guifont=Courier_New:b:h14
map :w:vsp %<.out :sp %<.in 
imap :w:vsp %<.out :sp %<.in 
function! Compile()
    exec "w"
    exec "!g++ % -o %<"
endfunction

function! Run()
    exec "!%<"
endfunction

map :call Compile() 
map :call Run() 
map 
map :wggVGy

imap :call Compile() 
imap :call Run() 
imap 
imap  :wggVGy

set guioptions=
set lines=46 columns=113
au GUIEnter * call libcallnr("vimtweak.dll", "SetAlpha", 220)   "数字越小越透明

NOI Linux 下

set ai
set cin
set si
set ts=4
set sts=4
set sw=4
set nu
set autoread
set nobackup
set cursorline
set mouse=a
set ruler
color evening
map  :w :!g++ % -o %< && ./%< 
imap  :w :!g++ % -o %< && ./%< 

map :w:vsp %<.out :sp %<.in 
imap :w:vsp %<.out :sp %<.in 

VimScript脚本学习

最好教程网站!!!
转载自:https://blog.csdn.net/smstong ; https://blog.csdn.net/u012450329
1、

  • helloworld及数据类型
  • 变量作用域、函数

2、条件、循环

3、

  • 常用的内置函数
  • 内置expand函数详解

转载于:https://www.cnblogs.com/chinhhh/p/8760468.html

你可能感兴趣的:(_vimrc(VimScript脚本语言学习))