Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
@types /
codemirror /
addon /
search /
[ HOME SHELL ]
Name
Size
Permission
Action
jump-to-line.d.ts
261
B
-rw-r--r--
match-highlighter.d.ts
1.72
KB
-rw-r--r--
matchesonscrollbar.d.ts
271
B
-rw-r--r--
search.d.ts
599
B
-rw-r--r--
searchcursor.d.ts
2.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : searchcursor.d.ts
import '../../'; declare module '../../' { interface DocOrEditor { /** * This method can be used to implement search/replace functionality. * `query`: This can be a regular * expression or a string (only strings will match across lines - * if they contain newlines). * `start`: This provides the starting position of the search. It can be a `{line, ch} object, * or can be left off to default to the start of the document * `caseFold`: This is only relevant when matching a string. IT will cause the search to be case-insenstive */ getSearchCursor(query: string | RegExp, start?: Position, caseFold?: boolean): SearchCursor; } interface SearchCursor { /** * Searches forward or backward from the current position. The return value indicates whether a match was * found. If matching a regular expression, the return value will be the array returned by the match method, in case * you want to extract matched groups */ find(reverse: boolean): boolean | RegExpMatchArray; /** * Searches forward from the current position. The return value indicates whether a match was * found. If matching a regular expression, the return value will be the array returned by the match method, in case * you want to extract matched groups */ findNext(): boolean | RegExpMatchArray; /** * Searches backward from the current position. The return value indicates whether a match was * found. If matching a regular expression, the return value will be the array returned by the match method, in case * you want to extract matched groups */ findPrevious(): boolean | RegExpMatchArray; /** * Only valid when the last call to find, findNext, or findPrevious did not return false. Returns {line, ch} * objects pointing the start of the match. */ from(): Position; /** * Only valid when the last call to find, findNext, or findPrevious did not return false. Returns {line, ch} * objects pointing the end of the match. */ to(): Position; /** Replaces the currently found match with the given text and adjusts the cursor position to reflect the deplacement. */ replace(text: string, origin?: string): void; } }
Close