-
Notifications
You must be signed in to change notification settings - Fork 0
vimscript
You can either put this in a script (script.vim) and run it (:source script.vim), or you can type the commands individually in normal mode as :let and :echo.
let name = "John"
echo "Hello, " . name{:.light}
Here's another example with functions, variables and mapping.
function! SuperTab()
let l:part = strpart(getline('.'),col('.')-2,1)
if (l:part=~'^\W\?$')
return "\<Tab>"
else
return "\<C-n>"
endif
endfunction
imap <Tab> <C-R>=SuperTab()<CR>let var = "hello"{:.light}
The s: prefix is also available in function names. See :help local-variables
let g:ack_options = '-s -H' " g: global
let s:ack_program = 'ack' " s: local (to script)
let l:foo = 'bar' " l: local (to function)let w:foo = 'bar' " w: window
let b:state = 'on' " b: buffer
let t:state = 'off' " t: tab
echo v:var " v: vim special
let @/ = '' " @ register (this clears last search patterN)
echo $PATH " $ envPrefix with &
echo 'tabstop is ' . &tabstop
if &insertmode
echo &g:option
echo &l:optiona + b " numbers only!
'hello ' . name " concatlet var -= 2
let var += 5
let var .= 'string' " concatAlso see :help literal-string and :help expr-quote
let str = "String"
let str = "String with \n newline"
let literal = 'literal, no \ escaping'
let literal = 'that''s enough' " double '' => '
echo "result = " . re " concatenationAlso see :help functions
strlen(str) " length
len(str) " same
strchars(str) " character length
split("one two three") "=> ['one', 'two', 'three']
split("one.two.three", '.') "=> ['one', 'two', 'three']
join(['a', 'b'], ',') "=> 'a,b'
tolower('Hello')
toupper('Hello')" prefix with s: for local script-only functions
function! s:Initialize(cmd, args)
" a: prefix for arguments
echo "Command: " . a:cmd
return true
endfunction{:.light}
function! myplugin#hello()call s:Initialize()
call s:Initialize("hello")echo "Result: " . s:Initialize()Aborts when error is detected
function! myfunction() abort
endfunctionSee :help function-argument
function! infect(...)
echo a:0 "=> 2
echo a:1 "=> jake
echo a:2 "=> bella
for s in a:000 " a list
echon ' ' . s
endfor
endfunction
infect('jake', 'bella')for s in list
echo s
continue " jump to start of loop
break " breaks out of a loop
endforwhile x < 5
endwhileCustom commands start with uppercase letters. The ! redefines a command if it already exists.
command! Save :set fo=want tw=80 nowrap{:.light}
command! Save call script#foo()
function! script#foo()
...
endfunctioncommand! -nargs=? Save call script#foo(<args>)| What | What |
|---|---|
-nargs=0 |
0 arguments, default |
-nargs=1 |
1 argument, includes spaces |
-nargs=? |
0 or 1 argument |
-nargs=* |
0+ arguments, space separated |
-nargs=+ |
1+ arguments, space reparated |
let char = getchar()
if char == "\<LeftMouse>"
" ...
elseif char == "\<RightMouse>"
" ...
else
" ...
endifNo booleans. 0 is false, 1 is true.
if 1 | echo "true" | endif
if 0 | echo "false" | endifif 1 "=> 1 (true)
if 0 "=> 0 (false)
if "1" "=> 1 (true)
if "456" "=> 1 (true)
if "xfz" "=> 0 (false)See :help expression-syntax
if 3 > 2
if a && b
if (a && b) || (c && d)
if !cif name ==# 'John' " case-sensitive
if name ==? 'John' " case-insensitive
if name == 'John' " depends on :set ignorecase
" also: is#, is?, >=#, >=?, and so onChecks if it's the same instance object
a is b
a isnot b
"hello" =~ '/x/'
"hello" !~ '/x/'if empty(a:path) | return [] | endif
a ? b : cif g:use_dispatch && s:has_dispatch
endiflet mylist = [1, two, 3, "four"]
let first = mylist[0]
let last = mylist[-1]
" Supresses errors
let second = get(mylist, 1)
let second = get(mylist, 1, "NONE")len(mylist)
empty(mylist)
sort(list)
let sortedlist = sort(copy(list))
split('hello there world', ' ')let longlist = mylist + [5, 6]
let mylist += [7, 8]let shortlist = mylist[2:-1]
let shortlist = mylist[2:] " same
let shortlist = mylist[2:2] " one itemlet alist = [1, 2, 3]
let alist = add(alist, 4)call map(files, "bufname(v:val)") " use v:val for value
call filter(files, 'v:val != ""')See :help dict
let colors = {
\ "apple": "red",
\ "banana": "yellow"
}
echo colors["a"]
echo get(colors, "apple") " supress error
remove(colors, "apple")
" :help E715
if has_key(dict, 'foo')
if empty(dict)
keys(dict)
len(dict)
max(dict)
min(dict)
count(dict, 'x')
string(dict)
map(dict, '<>> " . v:val')for key in keys(mydict)
echo key . ': ' . mydict(key)
endforPrefixes (s:, g:, l:, etc) are actually dictionaries
keys(s:)" Extending with more
let extend(s:fruits, { ... })str2float("2.3")
str2nr("3")
float2nr("3.14")See :help Number
let int = 1000
let int = 0xff
let int = 0755 " octalSee :help Float
let fl = 100.1
let fl = 5.4e43 / 2 "=> 1, integer division
3 / 2.0 "=> 1.5
3 * 2.0 "=> 6.0sqrt(100)
floor(3.5)
ceil(3.3)
abs(-3.4)
sin() cos() tan()
sinh() cosh() tanh()
asin() acos() atan()Runs an ex command you typically run with :. Also see :help execute
execute "vsplit"
execute "e " . fnameescape(filename)Use :normal to execute keystrokes as if you're typing them in normal mode. Combine with :execute for special keystrokes.
normal G
normal! G " skips key mappings
execute "normal! gg/foo\<cr>dd"echo expand("%") " path/file.txt
echo expand("%:t") " file.txt
echo expand("%:p:h") " /home/you/path/file.txt
echo expand("%:r") " path/file
echo expand("%:e") " txtSee :help silent
silent g/Aap/pechoerr 'oh it failed'
echomsg 'hello there'
echo 'hello'
echohl WarningMsg | echomsg "=> " . a:msg | echohl Noneset number
set nonumber
set number! " toggle
set numberwidth=5
set guioptions+=elet result = confirm("Sure?")
execute "confirm q"has("feature") " :h feature-list
executable("python")
globpath(&rtp, "syntax/c.vim")
exists("$ENV")
exists(":command")
exists("variable")
exists("+option")
exists("g:...")nnoremap
vmap
...[nvixso](nore)map
^ ^
| don't recurse
|
normal, visual, insert, eX mode, select, operator-pendingArguments:
-
<buffer>- only in current buffer -
<silent>- no echo <nowait>
hi Comment
term=bold,underline
gui=bold
ctermfg=4
guifg=#80a0ff
augroup filetypedetect
au! BufNewFile,BufRead *.json setf javascript
augroup END
au Filetype markdown setlocal spell
set conceallevel=2
syn match newLine "<br>" conceal cchar=}
hi newLine guifg=green
syn region inBold concealends matchgroup=bTag start="<b>" end="</b>"
hi inBold gui=bold
hi bTag guifg=blue
syn match :name ":regex" :flags
syn region Comment start="/\*" end="\*/"
syn region String start=+"+ end=+"+ skip=+\\"+
syn cluster :name contains=:n1,:n2,:n3...
flags:
keepend
oneline
nextgroup=
contains=
contained
hi def link markdownH1 htmlH1
if exists('g:loaded_myplugin')
finish
endif
" ...
let g:loaded_myplugin = 1