1018 | " ParagraphToEightyChars ><><><><><><><><><><><><><><><><><><><><><><><><><><><>
1019 | " brief: If the current line is > 80 chars then it will split the line on
1020 | " whitespace and then join the next line. It will keep doing this until
1021 | " it finds a line that is less than 80 chars long.
1022 | " input - optional: [bool] If present and true, will never join the next
1023 | " line. Useful if you only have one line of text that
1024 | " you don't want to run into the next line
1025 | " returns - void
@username
を付けます 54 | call dein#add('roxma/vim-hug-neovim-rpc')
55 | endif
56 |
57 | if dein#util#_is_windows()
58 | let cmd = 'tools\\update-dll-mingw'
59 | elseif dein#util#_is_cygwin()
60 | let cmd = 'make -f make_cygwin.mak'
61 | elseif executable('gmake')
62 | let cmd = 'gmake'
63 | else
64 | let cmd = 'make'
65 | endif
66 | let g:dein#plugin.build = cmd
67 | '''
68 |
69 | [[plugins]]
70 | repo = 'haya14busa/incsearch.vim'
71 | [[plugins]]
72 | repo = 'haya14busa/incsearch-fuzzy.vim'
73 | [[plugins]]
74 | repo = 'haya14busa/incsearch-migemo.vim'
54 | call dein#add('roxma/vim-hug-neovim-rpc')
55 | endif
56 |
57 | if dein#util#_is_windows()
58 | let cmd = 'tools\\update-dll-mingw'
59 | elseif dein#util#_is_cygwin()
60 | let cmd = 'make -f make_cygwin.mak'
61 | elseif executable('gmake')
62 | let cmd = 'gmake'
63 | else
64 | let cmd = 'make'
65 | endif
66 | let g:dein#plugin.build = cmd
67 | '''
68 |
69 | [[plugins]]
70 | repo = 'haya14busa/incsearch.vim'
71 | [[plugins]]
72 | repo = 'haya14busa/incsearch-fuzzy.vim'
73 | [[plugins]]
74 | repo = 'haya14busa/incsearch-migemo.vim'
54 | " Shift+移動キーで終端まで移動できるように
55 | noremap <S-h> b
56 | noremap <S-l> w
57 | noremap <S-j> }
58 | noremap <S-k> {
59 |
60 | " Option+移動キーで移動できるように(不安定/Mac専用)
61 | noremap <D-h> ^
62 | noremap <D-l> $
63 |
64 | " Ctrl+移動キーで移動できるように
65 | noremap <C-h> ^
66 | noremap <C-l> $
67 | noremap <C-j> }
68 | noremap <C-k> {
69 |
70 | " (shift)Tab でインデント
71 | nnoremap <Tab> >>
72 | nnoremap <S-Tab> <<
73 | vnoremap <Tab> >>
74 | vnoremap <S-Tab> <<
8 | " dein.vim がなければ github から落としてくる
9 | if &runtimepath !~# '/dein.vim'
10 | if !isdirectory(s:dein_repo_dir)
11 | execute '!git clone https://github.com/Shougo/dein.vim' s:dein_repo_dir
12 | endif
13 | execute 'set runtimepath^=' . fnamemodify(s:dein_repo_dir, ':p')
14 | endif
15 | "}}}
71 | [[plugins]]
72 | repo = 'haya14busa/incsearch-fuzzy.vim'
73 | [[plugins]]
74 | repo = 'haya14busa/incsearch-migemo.vim'
71 | nnoremap <Tab> >>
72 | nnoremap <S-Tab> <<
73 | vnoremap <Tab> >>
74 | vnoremap <S-Tab> <<