@k2works/claude-code-booster 0.21.2 → 0.21.3
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.
- package/lib/assets/docs/reference/Vim/346/223/215/344/275/234/343/203/236/343/203/213/343/203/245/343/202/242/343/203/253.md +10 -0
- package/lib/assets/docs/reference//350/250/200/350/252/236/345/210/245/351/226/213/347/231/272/343/202/254/343/202/244/343/203/211.md +6 -7
- package/lib/assets/ops/nix/shells/.vimrc +1 -1
- package/package.json +1 -1
|
@@ -24,6 +24,16 @@
|
|
|
24
24
|
| `<C-n>` | 下に移動 | 挿入 |
|
|
25
25
|
| `<C-b>` | 左に移動 | 挿入 |
|
|
26
26
|
| `<C-f>` | 右に移動 | 挿入 |
|
|
27
|
+
| `gt` | 次のタブへ移動 | ノーマル |
|
|
28
|
+
| `gT` | 前のタブへ移動 | ノーマル |
|
|
29
|
+
|
|
30
|
+
## ファイル・バッファ操作
|
|
31
|
+
| コマンド | 動作 |
|
|
32
|
+
|---|---|
|
|
33
|
+
| `:tabnew` | 新しいタブを開く |
|
|
34
|
+
| `:tabe [ファイル名]` | 指定したファイルを新しいタブで開く |
|
|
35
|
+
| `:tabclose` | 現在のタブを閉じる |
|
|
36
|
+
| `:e!` | 現在のバッファを破棄してディスクから強制的に再読み込みする |
|
|
27
37
|
|
|
28
38
|
## 開発機能 (Plugins)
|
|
29
39
|
|
|
@@ -71,12 +71,11 @@
|
|
|
71
71
|
|
|
72
72
|
### 2. Python
|
|
73
73
|
- **起動コマンド**: `nix develop .#python`
|
|
74
|
-
- **主要ツール**: Python 3.12,
|
|
74
|
+
- **主要ツール**: Python 3.12, uv, pytest, ruff (Linter/Formatter)
|
|
75
75
|
- **初期化**:
|
|
76
76
|
```bash
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
pip install pytest ruff
|
|
77
|
+
uv init
|
|
78
|
+
uv add --dev pytest ruff
|
|
80
79
|
```
|
|
81
80
|
- **TDDチュートリアル**:
|
|
82
81
|
1. **Red**: `test_hello.py` を作成。
|
|
@@ -85,15 +84,15 @@
|
|
|
85
84
|
def test_hello():
|
|
86
85
|
assert hello() == "Hello, World!"
|
|
87
86
|
```
|
|
88
|
-
実行(失敗): `pytest`
|
|
87
|
+
実行(失敗): `uv run pytest`
|
|
89
88
|
2. **Green**: `hello.py` を実装。
|
|
90
89
|
```python
|
|
91
90
|
def hello():
|
|
92
91
|
return "Hello, World!"
|
|
93
92
|
```
|
|
94
|
-
3. **Refactor**: `ruff check .` や `ruff format .` で品質を整える。
|
|
93
|
+
3. **Refactor**: `uv run ruff check .` や `uv run ruff format .` で品質を整える。
|
|
95
94
|
- **自動化**:
|
|
96
|
-
- `pytest
|
|
95
|
+
- `uv run pytest` を使用。
|
|
97
96
|
|
|
98
97
|
### 3. Go
|
|
99
98
|
- **起動コマンド**: `nix develop .#go`
|
|
@@ -205,7 +205,7 @@ if dein#load_state(s:dein_dir)
|
|
|
205
205
|
call dein#add('neovimhaskell/haskell-vim')
|
|
206
206
|
call dein#add('vim-ruby/vim-ruby')
|
|
207
207
|
call dein#add('stanangeloff/php.vim')
|
|
208
|
-
call dein#add('phpactor/phpactor', {'
|
|
208
|
+
call dein#add('phpactor/phpactor', {'on_ft': 'php'})
|
|
209
209
|
call dein#add('Olical/conjure')
|
|
210
210
|
call dein#add('clojure-vim/clojure.vim')
|
|
211
211
|
call dein#add('tpope/vim-fireplace', {'on_ft': 'clojure'})
|