@nozomiishii/pm 0.2.1 → 0.2.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/README.ja.md +14 -0
- package/README.md +14 -0
- package/dist/cli.js +5 -5
- package/package.json +5 -5
package/README.ja.md
CHANGED
|
@@ -157,6 +157,20 @@ pm() {
|
|
|
157
157
|
|
|
158
158
|
この仕組みにより、プロジェクト名のタブ補完もサポートしています。
|
|
159
159
|
|
|
160
|
+
## Tips
|
|
161
|
+
|
|
162
|
+
### Ghostty のキーバインドで一発起動
|
|
163
|
+
|
|
164
|
+
[Ghostty](https://ghostty.org) を使っている場合、設定ファイルに次の行を追加するとキーバインド一発で `pm` を起動できます。
|
|
165
|
+
|
|
166
|
+
```
|
|
167
|
+
keybind = super+alt+j=text:pm\n
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
`super+alt+j` を押すと現在のターミナルへ `pm` + Enter が送信され、fzf ピッカーが即座に開きます。
|
|
171
|
+
|
|
172
|
+
設定ファイルのパスは OS によって異なるので、[Ghostty 公式ドキュメントの Configuration](https://ghostty.org/docs/config) を参照してください。
|
|
173
|
+
|
|
160
174
|
## 謝辞
|
|
161
175
|
|
|
162
176
|
pm は以下のプロジェクトから大きな影響を受けています。僕の生産性を上げてくれて本当にありがとうございます
|
package/README.md
CHANGED
|
@@ -157,6 +157,20 @@ pm() {
|
|
|
157
157
|
|
|
158
158
|
This mechanism also provides tab completion for project names.
|
|
159
159
|
|
|
160
|
+
## Tips
|
|
161
|
+
|
|
162
|
+
### Launch with a Ghostty keybind
|
|
163
|
+
|
|
164
|
+
If you use [Ghostty](https://ghostty.org), add the following line to your config to launch `pm` with a single keybind.
|
|
165
|
+
|
|
166
|
+
```
|
|
167
|
+
keybind = super+alt+j=text:pm\n
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
Pressing `super+alt+j` sends `pm` + Enter to the current terminal, instantly opening the fzf picker.
|
|
171
|
+
|
|
172
|
+
The config file path differs by OS, so see the [Configuration page in the Ghostty docs](https://ghostty.org/docs/config) for the exact location.
|
|
173
|
+
|
|
160
174
|
## Acknowledgments
|
|
161
175
|
|
|
162
176
|
pm is heavily inspired by these projects. Thank you so much for boosting my productivity.
|
package/dist/cli.js
CHANGED
|
@@ -68,7 +68,7 @@ var logo_color_default = `\x1B[38;2;120;180;255m zzzzzzzzzzzzzzzzzzzzzzzzzz\x1B[
|
|
|
68
68
|
// package.json
|
|
69
69
|
var package_default = {
|
|
70
70
|
name: "@nozomiishii/pm",
|
|
71
|
-
version: "0.2.
|
|
71
|
+
version: "0.2.3",
|
|
72
72
|
description: "Project manager CLI — jump to projects via fzf",
|
|
73
73
|
type: "module",
|
|
74
74
|
homepage: "https://github.com/nozomiishii/pm#readme",
|
|
@@ -103,11 +103,11 @@ var package_default = {
|
|
|
103
103
|
test: "vitest run"
|
|
104
104
|
},
|
|
105
105
|
devDependencies: {
|
|
106
|
-
"@nozomiishii/commitlint-config": "1.
|
|
107
|
-
"@nozomiishii/lefthook-config": "1.
|
|
108
|
-
"@types/node": "25.
|
|
106
|
+
"@nozomiishii/commitlint-config": "1.1.1",
|
|
107
|
+
"@nozomiishii/lefthook-config": "1.1.1",
|
|
108
|
+
"@types/node": "25.8.0",
|
|
109
109
|
lefthook: "2.1.6",
|
|
110
|
-
vitest: "4.1.
|
|
110
|
+
vitest: "4.1.6"
|
|
111
111
|
},
|
|
112
112
|
publishConfig: {
|
|
113
113
|
access: "public",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nozomiishii/pm",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Project manager CLI — jump to projects via fzf",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/nozomiishii/pm#readme",
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
"test": "vitest run"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@nozomiishii/commitlint-config": "1.
|
|
39
|
-
"@nozomiishii/lefthook-config": "1.
|
|
40
|
-
"@types/node": "25.
|
|
38
|
+
"@nozomiishii/commitlint-config": "1.1.1",
|
|
39
|
+
"@nozomiishii/lefthook-config": "1.1.1",
|
|
40
|
+
"@types/node": "25.8.0",
|
|
41
41
|
"lefthook": "2.1.6",
|
|
42
|
-
"vitest": "4.1.
|
|
42
|
+
"vitest": "4.1.6"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public",
|