mirror of
https://github.com/soywod/himalaya.git
synced 2025-04-22 01:03:26 +00:00
19 lines
362 B
VimL
19 lines
362 B
VimL
if exists("g:loaded_himalaya")
|
|
finish
|
|
endif
|
|
|
|
if !executable("himalaya")
|
|
throw "Himalaya CLI not found, see https://github.com/soywod/himalaya#installation"
|
|
endif
|
|
|
|
" Backup cpo
|
|
let s:cpo_backup = &cpo
|
|
set cpo&vim
|
|
|
|
command! -nargs=* Himalaya call himalaya#msg#list(<f-args>)
|
|
|
|
" Restore cpo
|
|
let &cpo = s:cpo_backup
|
|
unlet s:cpo_backup
|
|
|
|
let g:loaded_himalaya = 1
|