-
-
Save tyru/974927 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set rtp+=~/.vim/bundle/eskk.vim,~/.vim/bundle/savemap.vim,~/.vim/bundle/vice.vim | |
if has('vim_starting') | |
augroup vimrc | |
autocmd! | |
augroup END | |
autocmd vimrc User eskk-initialize-pre call s:eskk_initial_pre() | |
function! s:eskk_initial_pre() "{{{ | |
let t = eskk#table#new('rom_to_hira*', 'rom_to_hira') | |
call t.add_map('va', 'ゔぁ') | |
call t.add_map('vi', 'ゔぃ') | |
call t.add_map('vu', 'ゔ') | |
call t.add_map('ve', 'ゔぇ') | |
call t.add_map('vo', 'ゔぉ') | |
call t.add_map('z ', ' ') | |
" echom string(t._data) | |
call eskk#register_mode_table('hira', t) | |
endfunction "}}} | |
endif | |
runtime! plugin/eskk.vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment