Interface IEditorFindOptions
Expand description
interface IEditorFindOptions {
addExtraSpaceOnTop?: boolean;
autoFindInSelection?: "always" | "never" | "multiline";
cursorMoveOnType?: boolean;
findOnType?: boolean;
loop?: boolean;
seedSearchStringFromSelection?:
| "always"
| "never"
| "selection";
}Properties§
§§§§§
add Extra Space On Top?: boolean§auto Find In Selection?: "always" | "never" | "multiline"Controls if Find in Selection flag is turned on in the editor.
cursor Move On Type?: booleanControls whether the cursor should move to find matches while typing.
find On Type?: booleanControls whether the find widget should search as you type.
loop?: booleanControls whether the search result and diff result automatically restarts from the beginning (or the end) when no further matches can be found
seed Search String From Selection?: "always" | "never" | "selection"Controls if we seed search string in the Find Widget with editor selection.
Configuration options for editor find widget