Skip to content

Commit fdbd335

Browse files
committed
fix: remove command token from themes
Signed-off-by: Snehil Shah <snehilshah.989@gmail.com> --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: passed - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 1808c07 commit fdbd335

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

lib/node_modules/@stdlib/repl/cli/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,6 @@ The syntax-highlighter supports the following tokens and associated theme fields
290290
- **number**: numeric literals.
291291
- **literal**: reserved literals (e.g., `true`, `false`, `null`, and `undefined`).
292292
- **regexp**: regular expressions.
293-
- **command**: built-in REPL commands.
294293
- **function**: function identifiers.
295294
- **object**: object identifiers.
296295
- **variable**: literal identifiers.

lib/node_modules/@stdlib/repl/cli/lib/themes.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ var THEMES = {
4141
'regexp': 'underline brightRed',
4242

4343
// Identifiers:
44-
'command': 'bold magenta',
4544
'function': 'bold yellow',
4645
'object': 'cyan',
4746
'variable': null,
@@ -65,7 +64,6 @@ var THEMES = {
6564
'regexp': 'bold red',
6665

6766
// Identifiers:
68-
'command': 'brightGreen',
6967
'function': 'bold magenta',
7068
'object': 'cyan',
7169
'variable': null,
@@ -89,7 +87,6 @@ var THEMES = {
8987
'regexp': 'underline red',
9088

9189
// Identifiers:
92-
'command': 'brightMagenta',
9390
'function': 'yellow',
9491
'object': 'bold',
9592
'variable': null,
@@ -113,7 +110,6 @@ var THEMES = {
113110
'regexp': 'underline red',
114111

115112
// Identifiers:
116-
'command': 'underline brightBlue',
117113
'function': 'bold yellow',
118114
'object': 'italic cyan',
119115
'variable': 'green',
@@ -137,7 +133,6 @@ var THEMES = {
137133
'regexp': 'bold underline',
138134

139135
// Identifiers:
140-
'command': 'underline bold',
141136
'function': 'italic bold',
142137
'object': 'italic',
143138
'variable': null,
@@ -161,7 +156,6 @@ var THEMES = {
161156
'regexp': 'red',
162157

163158
// Identifiers:
164-
'command': 'bold magenta',
165159
'function': 'brightBlue',
166160
'object': 'brightRed',
167161
'variable': 'brightBlue',
@@ -185,7 +179,6 @@ var THEMES = {
185179
'regexp': 'underline yellow',
186180

187181
// Identifiers:
188-
'command': 'bold brightGreen',
189182
'function': 'brightGreen',
190183
'object': 'italic brightMagenta',
191184
'variable': null,

0 commit comments

Comments
 (0)