Skip to content

Commit

Permalink
[se] Fix bug 37300
Browse files Browse the repository at this point in the history
Fix bug with enter symbol point in formula autocompleate
  • Loading branch information
trofim24 committed Mar 29, 2018
1 parent 280e391 commit ebd9bf4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*

### Spreadsheet Editor
*
* Fix bug 37300 with enter symbol point in formula autocompleate

### Presentation Editor
*
Expand Down
4 changes: 2 additions & 2 deletions cell/view/CellEditorView.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@
/** @type RegExp */
this.reReplaceNL = /\r?\n|\r/g;
this.rangeChars = ["=", "-", "+", "*", "/", "(", "{", ",", "<", ">", "^", "!", "&", ":", ";", " "];
this.reNotFormula = new XRegExp( "[^\\p{L}0-9_]", "i" );
this.reFormula = new XRegExp( "^([\\p{L}][\\p{L}0-9_]*)", "i" );
this.reNotFormula = new XRegExp( "[^\\p{L}0-9_\\.]", "i" );
this.reFormula = new XRegExp( "^([\\p{L}][\\p{L}0-9_\\.]*)", "i" );

this.defaults = {
padding: -1,
Expand Down

0 comments on commit ebd9bf4

Please sign in to comment.