@youtyan/code-viewer 0.8.2 → 0.8.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.md +6 -0
- package/dist/code-viewer.js +313 -168
- package/package.json +1 -1
- package/web/app.js +107 -15
- package/web/style.css +46 -0
package/README.md
CHANGED
|
@@ -169,6 +169,12 @@ Large repositories load folder children on demand. The sidebar remembers which
|
|
|
169
169
|
lazy-loaded folders you opened and re-expands them on the next reload, so the
|
|
170
170
|
tree state survives navigation and refresh.
|
|
171
171
|
|
|
172
|
+
Symlinks get a distinct icon and a "→ target" label instead of looking like a
|
|
173
|
+
regular file, and clicking one navigates straight to its resolved target.
|
|
174
|
+
Broken symlinks are flagged and disabled instead of erroring out. Files with
|
|
175
|
+
pending git changes (new, modified, renamed, deleted) show a status badge in
|
|
176
|
+
the tree in place of the regular type icon.
|
|
177
|
+
|
|
172
178
|
## Uploads and Scope Settings
|
|
173
179
|
|
|
174
180
|
File uploads are available for the local worktree target by default. Git tree
|