@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.
@@ -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, pip, pytest, ruff (Linter/Formatter)
74
+ - **主要ツール**: Python 3.12, uv, pytest, ruff (Linter/Formatter)
75
75
  - **初期化**:
76
76
  ```bash
77
- python -m venv .venv
78
- source .venv/bin/activate
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-watch` (要インストール) 等で自動テスト。
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', {'type': 'lua', 'on_ft': 'php'})
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'})
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k2works/claude-code-booster",
3
- "version": "0.21.2",
3
+ "version": "0.21.3",
4
4
  "description": "AI Agent Development Support Tool",
5
5
  "main": "main.js",
6
6
  "bin": {