679 | " 日本語のカッコ
680 | let g:sandwich#recipes += [
681 | \ {'buns': ['(', ')'], 'nesting': 1, 'input': ['j(', 'j)', 'jp']},
682 | \ {'buns': ['「', '」'], 'nesting': 1, 'input': ['j[', 'j]', 'jb']},
683 | \ {'buns': ['『', '』'], 'nesting': 1, 'input': ['j{', 'j}', 'jB']},
684 | \ {'buns': ['【', '】'], 'nesting': 1, 'input': ['j<', 'j>', 'jk']},
685 | \ ]
625 | " example; :QuickRun rsync -args /Users/mogami/work/path-of-project remote:work/sync-mac
626 | let g:quickrun_config['rsync'] = {
627 | \ 'command': 'rsync',
628 | \ 'cmdopt': '-C --filter=":- .gitignore" --exclude ".git" -acvz --delete -e ssh',
629 | \ 'exec': '%c %o %a',
630 | \ 'outputter/error/success': 'null',
631 | \ }
@username
を付けます 950 | " 文字コードのインクリメント {{{
951 | nnoremap <Space>a :<C-u>call <SID>increment_char(v:count1)<CR>
952 | nnoremap <Space>x :<C-u>call <SID>increment_char(v:count1 * -1)<CR>
953 |
954 | function! s:increment_char(count)
955 | normal v"my
956 | let char = @m
957 | let num = char2nr(char)
958 | let @m = nr2char(num + a:count)
959 | normal gv"mp
960 | endfunction