Skip to content

Commit ef0ec02

Browse files
authoredMar 14, 2022
Excel Formula: Use more fitting aliases for function-name, range, and cell (#3391)
1 parent ce41434 commit ef0ec02

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎components/prism-excel-formula.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ Prism.languages['excel-formula'] = {
3939
},
4040
'function-name': {
4141
pattern: /\b[A-Z]\w*(?=\()/i,
42-
alias: 'keyword'
42+
alias: 'builtin'
4343
},
4444
'range': {
4545
pattern: /\$?\b(?:[A-Z]+\$?\d+:\$?[A-Z]+\$?\d+|[A-Z]+:\$?[A-Z]+|\d+:\$?\d+)\b/i,
46-
alias: 'property',
46+
alias: 'selector',
4747
inside: {
4848
'operator': /:/,
4949
'cell': /\$?[A-Z]+\$?\d+/i,
@@ -55,7 +55,7 @@ Prism.languages['excel-formula'] = {
5555
// Excel is case insensitive, so the string "foo1" could be either a variable or a cell.
5656
// To combat this, we match cells case insensitive, if the contain at least one "$", and case sensitive otherwise.
5757
pattern: /\b[A-Z]+\d+\b|\$[A-Za-z]+\$?\d+\b|\b[A-Za-z]+\$\d+\b/,
58-
alias: 'property'
58+
alias: 'selector'
5959
},
6060
'number': /(?:\b\d+(?:\.\d+)?|\B\.\d+)(?:e[+-]?\d+)?\b/i,
6161
'boolean': /\b(?:FALSE|TRUE)\b/i,

‎components/prism-excel-formula.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.