remove unnecessary lookbehind and comment emoticon regex

Signed-off-by: macekj <macekj@umich.edu>
pull/21833/head
macekj 2020-11-24 11:42:53 -05:00
parent ba8d02a808
commit 2ffdfaef68
1 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,8 @@ import AutocompleteWrapperModel from "../../../editor/autocomplete";
import DocumentPosition from "../../../editor/position"; import DocumentPosition from "../../../editor/position";
import {ICompletion} from "../../../autocomplete/Autocompleter"; import {ICompletion} from "../../../autocomplete/Autocompleter";
const REGEX_EMOTICON_WHITESPACE = new RegExp('(?:^|\\s|(?<=^\\+))(' + EMOTICON_REGEX.source + ')\\s$'); // matches emoticons which follow the start of a line, whitespace, or a plus at the start of a line
const REGEX_EMOTICON_WHITESPACE = new RegExp('(?:^|\\s|^\\+)(' + EMOTICON_REGEX.source + ')\\s$');
const IS_MAC = navigator.platform.indexOf("Mac") !== -1; const IS_MAC = navigator.platform.indexOf("Mac") !== -1;