@fresh-editor/fresh-editor 0.1.65 → 0.1.67
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 +48 -0
- package/README.md +2 -2
- package/package.json +1 -1
- package/plugins/audit_mode.ts +1045 -0
- package/plugins/clangd-lsp.ts +166 -0
- package/plugins/config-schema.json +54 -1
- package/plugins/csharp-lsp.ts +145 -0
- package/plugins/css-lsp.ts +141 -0
- package/plugins/go-lsp.ts +141 -0
- package/plugins/html-lsp.ts +143 -0
- package/plugins/json-lsp.ts +143 -0
- package/plugins/lib/fresh.d.ts +98 -2
- package/plugins/python-lsp.ts +160 -0
- package/plugins/rust-lsp.ts +164 -0
- package/plugins/typescript-lsp.ts +165 -0
- package/plugins/vi_mode.ts +1630 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
|
+
## 0.1.67
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **Find Selection Next/Previous**: Search for word under cursor without opening find panel. Ctrl+F3/Ctrl+Shift+F3 or Alt+N/Alt+P (#489).
|
|
8
|
+
|
|
9
|
+
* **Cursor Style Configuration**: Configure terminal cursor style (block/bar/underline, blinking/steady) via command palette (#341).
|
|
10
|
+
|
|
11
|
+
* **Case Conversion**: Transform selected text to uppercase (Alt+U) or lowercase (Alt+L) (#522).
|
|
12
|
+
|
|
13
|
+
* **Folder Modified Indicators**: Parent folders show dot indicator when containing unsaved files (#526).
|
|
14
|
+
|
|
15
|
+
* **Line Ending Indicator**: Status bar shows LF/CRLF/CR, clickable to change. Conversion on save, configurable default (#487).
|
|
16
|
+
|
|
17
|
+
### Experimental
|
|
18
|
+
|
|
19
|
+
*These features are work-in-progress. Expect rough edges and breaking changes.*
|
|
20
|
+
|
|
21
|
+
* **LSP Helper Plugins**: Popup with install commands when LSP server not found for Python, Rust, TypeScript (#502).
|
|
22
|
+
|
|
23
|
+
* **Vi Mode Plugin**: Full vi-style modal editing with normal/insert/visual modes, operators (d/c/y), motions (hjkl, w/b/e, gg/G), text objects (iw, i", i(), etc.), counts, and find character (f/t).
|
|
24
|
+
|
|
25
|
+
* **Review Diff Plugin**: Code review for AI-generated changes or git diffs. Side-by-side view with synchronized scrolling, line comments, approve/reject/stage actions, export to Markdown/JSON.
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* **Line Numbers with Wrapped Lines**: Fixed line numbers desyncing when scrolling through wrapped lines (#552).
|
|
30
|
+
|
|
31
|
+
* **Click Past End of Line**: Now positions cursor at line end instead of next line start (#547).
|
|
32
|
+
|
|
33
|
+
* **Line Wrapping**: Fixed characters being clipped at wrap boundaries with tabs and grapheme clusters (#550).
|
|
34
|
+
|
|
35
|
+
* **Zsh Dotfiles**: .zshrc, .zprofile, .zshenv now highlighted as shell scripts (#537).
|
|
36
|
+
|
|
37
|
+
* **Cursor on Status Bar**: Fixed cursor jumping to status bar when scrolling to end of file (#468).
|
|
38
|
+
|
|
39
|
+
* **Large Single-Line Files**: Fixed memory exhaustion and 100% CPU on files like minified JSON (#481).
|
|
40
|
+
|
|
41
|
+
* **Config Editor Keys**: Fixed Delete, Home/End, Ctrl+A in JSON text box.
|
|
42
|
+
|
|
43
|
+
* **Search Term Persistence**: Alt+N/Alt+P keeps original search term when landing on longer word.
|
|
44
|
+
|
|
45
|
+
### Packaging
|
|
46
|
+
|
|
47
|
+
* **AUR**: Use stable source tarball to fix sha256sum validation failures.
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
3
51
|
## 0.1.65
|
|
4
52
|
|
|
5
53
|
### Features
|
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ Or, pick your preferred method:
|
|
|
57
57
|
| Bazzite/Bluefin/Aurora Linux | [brew](#brew) |
|
|
58
58
|
| Arch Linux | [AUR](#arch-linux-aur) |
|
|
59
59
|
| Debian/Ubuntu | [.deb](#debianubuntu-deb) |
|
|
60
|
-
| Fedora/RHEL | [.rpm](#fedorarhelopensuse-rpm) |
|
|
60
|
+
| Fedora/RHEL | [.rpm](#fedorarhelopensuse-rpm), [Terra](https://terra.fyralabs.com/) |
|
|
61
61
|
| Linux (any distro) | [AppImage](#appimage), [Flatpak](#flatpak) |
|
|
62
62
|
| All platforms | [Pre-built binaries](#pre-built-binaries) |
|
|
63
63
|
| npm | [npm / npx](#npm) |
|
|
@@ -195,7 +195,7 @@ nix run github:sinelaw/fresh
|
|
|
195
195
|
|
|
196
196
|
Or install to your profile:
|
|
197
197
|
```bash
|
|
198
|
-
nix profile
|
|
198
|
+
nix profile add github:sinelaw/fresh
|
|
199
199
|
```
|
|
200
200
|
|
|
201
201
|
### From crates.io
|