@k2works/claude-code-booster 4.4.2 → 4.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -35,6 +35,19 @@
|
|
|
35
35
|
| `:tabclose` | 現在のタブを閉じる |
|
|
36
36
|
| `:e!` | 現在のバッファを破棄してディスクから強制的に再読み込みする |
|
|
37
37
|
|
|
38
|
+
## ファイルツリー
|
|
39
|
+
|
|
40
|
+
- `,e` で `NERDTreeToggle`
|
|
41
|
+
- `,ef` で現在ファイルのディレクトリを `NERDTreeFind`
|
|
42
|
+
- 隠しファイルも表示します
|
|
43
|
+
|
|
44
|
+
## タグ
|
|
45
|
+
|
|
46
|
+
- `gutentags` を有効化しています。
|
|
47
|
+
- `ctags` は `universal-ctags` を使います。
|
|
48
|
+
- `tags` は `./tags;,tags` を読む設定です。
|
|
49
|
+
- 保存時や必要時にタグが自動生成されます。
|
|
50
|
+
|
|
38
51
|
## 開発機能 (Plugins)
|
|
39
52
|
|
|
40
53
|
### [coc.nvim](https://github.com/neoclide/coc.nvim) (入力補完・LSP)
|
|
@@ -144,8 +144,8 @@ if &runtimepath !~# '/dein.vim'
|
|
|
144
144
|
execute '!git clone https://github.com/Shougo/dein.vim' s:dein_dir
|
|
145
145
|
endif
|
|
146
146
|
endif
|
|
147
|
-
|
|
148
|
-
|
|
147
|
+
let s:dein_path = substitute(fnamemodify(s:dein_dir, ':p'), '[/\\]$', '', '')
|
|
148
|
+
execute 'set runtimepath^=' . s:dein_path
|
|
149
149
|
endif
|
|
150
150
|
|
|
151
151
|
if &compatible
|
|
@@ -188,6 +188,8 @@ if dein#load_state(s:dein_dir)
|
|
|
188
188
|
call dein#add('suy/vim-ctrlp-commandline')
|
|
189
189
|
call dein#add('rking/ag.vim')
|
|
190
190
|
call dein#add('mattn/ctrlp-matchfuzzy')
|
|
191
|
+
" ファイルツリー
|
|
192
|
+
call dein#add('preservim/nerdtree')
|
|
191
193
|
" 開発
|
|
192
194
|
call dein#add('airblade/vim-gitgutter')
|
|
193
195
|
call dein#add('tpope/vim-fugitive')
|
|
@@ -212,6 +214,7 @@ if dein#load_state(s:dein_dir)
|
|
|
212
214
|
call dein#add('tpope/vim-fireplace', {'on_ft': 'clojure'})
|
|
213
215
|
call dein#add('elixir-editors/vim-elixir')
|
|
214
216
|
call dein#add('derekwyatt/vim-scala')
|
|
217
|
+
call dein#add('ludovicchabant/vim-gutentags')
|
|
215
218
|
|
|
216
219
|
call dein#end()
|
|
217
220
|
call dein#save_state()
|
|
@@ -269,6 +272,16 @@ let g:ctrlp_show_hidden = 1 " .(ドット)から始まるファイルも検索
|
|
|
269
272
|
let g:ctrlp_types = ['fil'] "ファイル検索のみ使用
|
|
270
273
|
let g:ctrlp_extensions = ['funky', 'commandline'] " CtrlPの拡張として「funky」と「commandline」を使用
|
|
271
274
|
|
|
275
|
+
" NERDTreeの設定
|
|
276
|
+
let g:NERDTreeShowHidden = 1
|
|
277
|
+
nnoremap <silent> <leader>e :NERDTreeToggle<CR>
|
|
278
|
+
nnoremap <silent> <leader>ef :NERDTreeFind<CR>
|
|
279
|
+
|
|
280
|
+
" gutentagsの設定
|
|
281
|
+
let g:gutentags_enabled = 1
|
|
282
|
+
let g:gutentags_generate_on_missing = 1
|
|
283
|
+
set tags=./tags;,tags
|
|
284
|
+
|
|
272
285
|
" CtrlPCommandLineの有効化
|
|
273
286
|
command! CtrlPCommandLine call ctrlp#init(ctrlp#commandline#id())
|
|
274
287
|
|