Skip to content

Instantly share code, notes, and snippets.

@tyru
Forked from thinca/eskktest.vim
Created May 16, 2011 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tyru/974927 to your computer and use it in GitHub Desktop.
Save tyru/974927 to your computer and use it in GitHub Desktop.
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