1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 17:30:04 +08:00
SpaceVim/bundle/incsearch.vim/test/.themisrc
Wang Shidong cd6ea298f2
fix java neoformat config
* Add incsearch.vim into bundle dir

* Fix java neoformat config

close #3573

* Use echom instead in pull.vim
2020-06-13 21:58:05 +08:00

38 lines
959 B
Plaintext

call themis#option('recursive', 1)
" For development
call themis#option('runtimepath', expand('~/.vim/bundle/vital.vim'))
call themis#option('runtimepath', expand('~/.vim/bundle/vital-vimlcompiler'))
call themis#option('runtimepath', expand('~/.vim/bundle/vital-safe-string'))
call themis#option('runtimepath', expand('~/.vim/bundle/vital-power-assert'))
let g:Expect = themis#helper('expect')
call themis#helper('command').with(themis#helper('assert')).with({'Expect': g:Expect})
let g:__vital_power_assert_config = {
\ '__debug__': 1,
\ '__pseudo_throw__': 0,
\ '__max_length__': -1
\ }
" mock
function! incsearch#over#modules#bulk_input_char#make() abort
return {}
endfunction
language C
" Helper Functions:
function! AddLine(str)
put! =a:str
endfunction
function! AddLines(lines)
for line in reverse(deepcopy(a:lines))
put! =line
endfor
endfunction
function! GetPosChar()
return getline('.')[col('.')-1]
endfunction