opencode-windows-encoding 1.0.3 → 1.1.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.
- package/README.md +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/opencode-windows-encoding)
|
|
4
4
|
[](https://www.gnu.org/licenses/agpl-3.0)
|
|
5
5
|
|
|
6
|
-
OpenCode plugin that fixes UTF-8 encoding issues when executing PowerShell commands on Windows.
|
|
6
|
+
OpenCode plugin that fixes UTF-8 encoding issues when executing PowerShell commands on Windows. Single-file, zero npm dependencies.
|
|
7
7
|
|
|
8
8
|
## The Problem
|
|
9
9
|
|
|
@@ -46,11 +46,12 @@ Or with a specific version:
|
|
|
46
46
|
```jsonc
|
|
47
47
|
{
|
|
48
48
|
"plugin": [
|
|
49
|
-
"opencode-windows-encoding
|
|
49
|
+
"opencode-windows-encoding@^1.1"
|
|
50
50
|
]
|
|
51
51
|
}
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
+
After adding the plugin, restart OpenCode. All subsequent shell commands will use UTF-8 encoding automatically.
|
|
54
55
|
After adding the plugin, restart OpenCode. All subsequent shell commands will use UTF-8 encoding automatically.
|
|
55
56
|
|
|
56
57
|
## 本地使用(复制即用)
|