Skip to content

Commit 275e47a

Browse files
committed
Docs: update changelog.
1 parent 07b7eb2 commit 275e47a

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Changelog
2222
[Github master](https://github.com/bjones1/CodeChat_Editor)
2323
-----------------------------------------------------------
2424

25-
* No changes.
25+
* File watcher now accepts new files from the Client.
2626

2727
Version 0.1.39 -- 2025-Oct-23
2828
-----------------------------

client/src/CodeMirror-integration.mts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -680,13 +680,13 @@ export const DocBlockPlugin = ViewPlugin.fromClass(
680680
// needing to check if it's already present.
681681
indent_div.addEventListener(
682682
"beforeinput",
683-
// Allow only spaces and delete/backspaces when editing the indent of a doc
684-
// block.
683+
// Allow only spaces and delete/backspaces when editing the
684+
// indent of a doc block.
685685
(event: InputEvent) => {
686686
// Only modify the behavior of inserts.
687687
if (event.data) {
688-
// Block any insert that's not an insert of spaces. TODO: need to
689-
// support tabs.
688+
// Block any insert that's not an insert of spaces.
689+
// TODO: need to support tabs.
690690
if (event.data !== " ".repeat(event.data.length)) {
691691
event.preventDefault();
692692
}
@@ -850,6 +850,7 @@ export const DocBlockPlugin = ViewPlugin.fromClass(
850850

851851
// UI
852852
// --
853+
//
853854
// There doesn't seem to be any tracking of a dirty/clean flag built into
854855
// CodeMirror v6 (although [v5
855856
// does](https://codemirror.net/5/doc/manual.html#isClean)). The best I've found

0 commit comments

Comments
 (0)