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 /
@types /
codemirror /
addon /
search /
Delete
Unzip
Name
Size
Permission
Date
Action
jump-to-line.d.ts
261
B
-rw-r--r--
2022-10-24 16:35
match-highlighter.d.ts
1.72
KB
-rw-r--r--
2022-10-24 16:35
matchesonscrollbar.d.ts
271
B
-rw-r--r--
2022-10-24 16:35
search.d.ts
599
B
-rw-r--r--
2022-10-24 16:35
searchcursor.d.ts
2.4
KB
-rw-r--r--
2022-10-24 16:35
Save
Rename
// See docs https://codemirror.net/doc/manual.html#addon_match-highlighter import '../../'; declare module '../../' { interface HighlightSelectionMatches { /** * Minimum amount of selected characters that triggers a highlight (default 2). */ minChars?: number | undefined; /** * The style to be used to highlight the matches (default "matchhighlight", which will correspond to CSS class cm-matchhighlight). */ style?: string | undefined; /** * Controls whether whitespace is trimmed from the selection. */ trim?: boolean | undefined; /** * Can be set to true or to a regexp matching the characters that make up a word. */ showToken?: boolean | RegExp | undefined; /** * Used to specify how much time to wait, in milliseconds, before highlighting the matches (default is 100). */ delay?: number | undefined; /** * If wordsOnly is enabled, the matches will be highlighted only if the selected text is a word. */ wordsOnly?: boolean | undefined; /** * If annotateScrollbar is enabled, the occurences will be highlighted on the scrollbar via the matchesonscrollbar addon. */ annotateScrollbar?: boolean | undefined; } interface EditorConfiguration { /** * Adds a highlightSelectionMatches option that can be enabled to highlight all instances of a currently selected word. * When enabled, it causes the current word to be highlighted when nothing is selected (defaults to off). */ highlightSelectionMatches?: HighlightSelectionMatches | boolean | undefined; } }