revert cargo workspace feature

This commit is contained in:
Clément DOUIN
2021-11-12 00:33:24 +01:00
parent 9b0a3fcba5
commit 08d31ef55c
96 changed files with 145 additions and 441 deletions
+19 -1
View File
@@ -1 +1,19 @@
echoerr 'Cannot load himalaya: please change the rtp path from "vim" to "email-manager/vim" (https://github.com/soywod/himalaya/tree/development/email-manager/vim).'
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