You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
popupOptions.listSeparator = '\0'; //(char) When editing a list of values, the separator used for different items.
7471
+
popupOptions.whitespace = ""; //When editing a value, the whitespace characters ignored before the current value.
7472
+
//popupOptions.wordSeparators = "-_., ;()"; //To show suggestions based on matches of the edited value with parts of the suggestion.
7473
+
popupOptions.wordStartRegexp = "\\s|^|\\(|\\<"; // Instead of using .wordSeparators, we will use the regex option to start matching at whitespaces, start of line, open-paren, and boundaries of words (probably a bit duplicative).
7474
+
popupOptions.appendReplacedText = ""; //
7475
+
m_shieldingSuggestion = newWSuggestionPopup( popupOptions, this );
0 commit comments