File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff 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
2727Version 0.1.39 -- 2025-Oct-23
2828-----------------------------
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments