I'm using @monaco-editor/react
editor.trigger(undefined, 'editor.actions.findWithArgs', {
searchString: 'abc',
replaceString: '',
isRegex: false,
preserveCase: true,
findInSelection: false,
matchWholeWord: true,
isCaseSensitive: false,
});
// or
editor.trigger(undefined, 'editor.actions.findWithArgs', 'abc')
The result:
But i want:
what should i do


