You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
611 B
VimL

1 year ago
" banana.vim - Convert Base Banana (https://git.lattuga.net/itec/banana) and back
" T4 - totem4@tropici.net
" Version: 0.1
vim9script
if exists("g:loaded_Banana") || &cp
finish
endif
g:loaded_Banana = 1
var keepcpo = &cpo
set cpo&vim
if !hasmapto('<Plug>BananaEnc')
1 year ago
map <unique> <Leader>b <Plug>BananaEnc
1 year ago
endif
if !hasmapto('<Plug>BananaDec')
1 year ago
map <unique> <Leader>d <Plug>BananaDec
1 year ago
endif
import autoload 'banana.vim'
noremap <silent> <unique> <script> <Plug>BananaEnc
\ :call <SID>banana.Enc()<CR>
noremap <silent> <unique> <script> <Plug>BananaDec
\ :call <SID>banana.Dec()<CR>
&cpo = keepcpo