Server IP : 15.235.198.142 / Your IP : 216.73.216.190 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/share/nodejs/@types/codemirror/addon/search/ |
Upload File : |
// 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; } }