@fresh-editor/fresh-editor 0.1.69 → 0.1.70
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/CHANGELOG.md +39 -0
- package/package.json +1 -1
- package/plugins/audit_mode.ts +2 -2
- package/plugins/config-schema.json +3 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
|
+
## 0.1.70
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **Input Calibration Wizard**: New wizard to calibrate keyboard input for terminals with broken key sequences. Access via "Calibrate Keyboard" in command palette or View menu. Uses failsafe ASCII-only navigation (#219).
|
|
8
|
+
|
|
9
|
+
* **Terminal Cursor Color**: Cursor color now set via OSC 12 escape sequence for proper visibility across all themes, especially light theme.
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **Dynamic Keybinding Hints**: Status messages now show actual keybindings from keymap instead of hardcoded shortcuts (#659).
|
|
14
|
+
|
|
15
|
+
* **Search in Large Files**: Fixed "Buffer not fully loaded" error when searching in large plain text files (#657).
|
|
16
|
+
|
|
17
|
+
* **LSP Config Preservation**: Fixed LSP command field becoming empty when toggling enabled state. Partial config now merges with defaults (#630, #631).
|
|
18
|
+
|
|
19
|
+
* **Multi-Cursor End of Line**: Fixed secondary cursors rendering at line start instead of end (#632).
|
|
20
|
+
|
|
21
|
+
* **Selection at Cursor**: Fixed selection background not showing at primary cursor position with bar/underline cursor styles (#614).
|
|
22
|
+
|
|
23
|
+
* **Locale Interpolation**: Fixed locale name not appearing in "Locale changed" message (#624).
|
|
24
|
+
|
|
25
|
+
* **Cursor Past Trailing Newline**: Allow cursor to navigate to the empty line after trailing newline (#622, @Asuka-Minato).
|
|
26
|
+
|
|
27
|
+
* **.env Syntax Highlighting**: Added .env to default shell syntax patterns (#559).
|
|
28
|
+
|
|
29
|
+
* **Spanish Translation**: Fixed typo in menu bar (@osniel).
|
|
30
|
+
|
|
31
|
+
* **Audit Mode Keybindings**: Use Emacs-style key notation in diff-view bindings (@xunzhou).
|
|
32
|
+
|
|
33
|
+
### Internal
|
|
34
|
+
|
|
35
|
+
* Refactored config system to use layered PartialConfig resolution everywhere.
|
|
36
|
+
* Code cleanup: use `Self` where possible, merge match arms (@adamnemecek).
|
|
37
|
+
* Clean up log output by resetting to column zero (@Martin-Häcker).
|
|
38
|
+
* Bumped windows-sys to 0.61.2 (@dependabot).
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
3
42
|
## 0.1.69
|
|
4
43
|
|
|
5
44
|
> **macOS Users**: This release includes significant improvements for macOS terminal compatibility. See the new [macOS Terminal Tips](docs/USER_GUIDE.md#macos-terminal-tips) guide for recommended terminal emulators and keyboard configuration. The macOS keymap ([`keymaps/macos.json`](keymaps/macos.json)) is a work in progress—please submit patches based on your experience with different terminals and keyboard layouts!
|
package/package.json
CHANGED
package/plugins/audit_mode.ts
CHANGED
|
@@ -1203,8 +1203,8 @@ editor.defineMode("diff-view", "special", [
|
|
|
1203
1203
|
["k", "move_up"],
|
|
1204
1204
|
["g", "move_document_start"],
|
|
1205
1205
|
["G", "move_document_end"],
|
|
1206
|
-
["
|
|
1207
|
-
["
|
|
1206
|
+
["C-d", "move_page_down"],
|
|
1207
|
+
["C-u", "move_page_up"],
|
|
1208
1208
|
["Down", "move_down"],
|
|
1209
1209
|
["Up", "move_up"],
|
|
1210
1210
|
["PageDown", "move_page_down"],
|
|
@@ -677,8 +677,9 @@
|
|
|
677
677
|
"type": "object",
|
|
678
678
|
"properties": {
|
|
679
679
|
"command": {
|
|
680
|
-
"description": "Command to spawn the server",
|
|
681
|
-
"type": "string"
|
|
680
|
+
"description": "Command to spawn the server.\nRequired when enabled=true, ignored when enabled=false.",
|
|
681
|
+
"type": "string",
|
|
682
|
+
"default": ""
|
|
682
683
|
},
|
|
683
684
|
"args": {
|
|
684
685
|
"description": "Arguments to pass to the server",
|
|
@@ -712,9 +713,6 @@
|
|
|
712
713
|
"default": null
|
|
713
714
|
}
|
|
714
715
|
},
|
|
715
|
-
"required": [
|
|
716
|
-
"command"
|
|
717
|
-
],
|
|
718
716
|
"x-display-field": "/command"
|
|
719
717
|
},
|
|
720
718
|
"ProcessLimits": {
|