-
Notifications
You must be signed in to change notification settings - Fork 1
/
dot_vrapperrc
52 lines (39 loc) · 1.33 KB
/
dot_vrapperrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
:set ignorecase
:set smartcase
" C-a で一番前、C-e で一番後ろ
inoremap <C-e> <Esc>$a
inoremap <C-a> <Esc>^i
noremap <C-e> $
noremap <C-a> ^
"スクロール
noremap <Space>j <C-f>
noremap <Space>k <C-b>
"カーソル位置の単語をyankする
nnoremap vv vawy
"最後に変更されたテキストを選択する
nnoremap gc `[v`]
vnoremap gc ;<C-u>normal gc<Enter>
onoremap gc ;<C-u>normal gc<Enter>
" Insert mode中で単語単位/行単位の削除をアンドゥ可能にする
inoremap <C-u> <C-g>u<C-u>
inoremap <C-w> <C-g>u<C-w>
" ;でExコマンド入力( ;と:を入れ替)
noremap ; :
noremap : ;
"srで参照をプロジェクトから検索
eclipseaction SearchRef org.eclipse.jdt.ui.edit.text.java.search.references.in.project
noremap sr :SearchRef<C-m>
"<space>j, <space>kで画面送り
noremap <Space>j <C-f>
noremap <Space>k <C-b>
"最後に編集された位置に移動
eclipseaction GoLastEditPosition org.eclipse.ui.edit.text.gotoLastEditPosition
nnoremap gb :GoLastEditPosition<C-m>
"対応する括弧に移動
nnoremap [ %
nnoremap ] %
"次のメンバ(フィールド,メソッド)
eclipseaction GoNextMember org.eclipse.jdt.ui.edit.text.java.goto.next.member
nnoremap mm :GoNextMember<C-m>
eclipseaction GoPrevMember org.eclipse.jdt.ui.edit.text.java.goto.previous.member
nnoremap mp :GoPrevMember<C-m>