Skip to content

Commit d11c65c

Browse files
committed
update config
1 parent e32a86c commit d11c65c

File tree

6 files changed

+38
-15
lines changed

6 files changed

+38
-15
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22

33
_[Donate with PayPal](https://paypal.me/zendobk)_
44

5-
This VSCode extension provides MySQL syntax highlighting, token colors for dark themes and code snippets.
5+
This VSCode extension provides MySQL syntax highlighting for dark themes and code snippets.
66

77
## Features
88

99
- **Syntax Highlighting**: Enhanced syntax highlighting for MySQL scripts, making it easier to read and write complex queries. This feature supports various MySQL keywords, functions, and operators, ensuring that your code is visually distinct and easy to navigate.
10-
- **Token Colors**: Provides a set of predefined token colors optimized for dark themes, ensuring better readability and a pleasant coding experience. The colors are carefully chosen to reduce eye strain and improve code comprehension.
1110
- **Code Snippets**: Useful code snippets to speed up MySQL development. These snippets include common SQL statements, table creation scripts, and other frequently used commands, allowing you to write code more efficiently.
1211

1312
## Installation
File renamed without changes.

images/mysql-logo.png

27.8 KB
Loading

images/mysql.png

-17.6 KB
Binary file not shown.

package.json

+37-13
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,43 @@
11
{
22
"name": "mysql",
33
"displayName": "MySQL syntax highlighting & code snippets",
4-
"description": "This VSCode extension provides MySQL syntax highlighting, token colors for dark themes and code snippets.",
5-
"version": "0.0.8",
4+
"description": "This VSCode extension provides MySQL syntax highlighting for dark themes and code snippets.",
5+
"version": "0.0.9",
66
"publisher": "zendobk",
7-
"icon": "images/mysql.png",
7+
"icon": "images/mysql-logo.png",
8+
"galleryBanner": {
9+
"color": "#F2F2F2",
10+
"theme": "light"
11+
},
12+
"keywords": [
13+
"mysql",
14+
"syntax",
15+
"highlighting",
16+
"snippets"
17+
],
18+
"categories": [
19+
"Programming Languages",
20+
"Snippets"
21+
],
22+
"compatibility": {
23+
"1.0.0": "1.0.0"
24+
},
825
"author": {
926
"name": "Dao Nguyen",
1027
"email": "[email protected]"
1128
},
1229
"repository": {
1330
"type": "git",
14-
"url": "[email protected]:zendobk/vscode-mysql.git"
31+
"url": "https://github.com/zendobk/vscode-mysql"
32+
},
33+
"bugs": {
34+
"url": "https://github.com/zendobk/vscode-mysql/issues"
1535
},
1636
"license": "MIT",
1737
"engines": {
18-
"vscode": "^1.95.0"
38+
"vscode": "^1.95.0",
39+
"node": "^20.18.0"
1940
},
20-
"categories": [
21-
"Programming Languages"
22-
],
2341
"scripts": {
2442
"build": "npx vsce package"
2543
},
@@ -35,8 +53,8 @@
3553
".sql"
3654
],
3755
"icon": {
38-
"light": "./images/mysql.svg",
39-
"dark": "./images/mysql.svg"
56+
"light": "./images/mysql-icon.svg",
57+
"dark": "./images/mysql-icon.svg"
4058
},
4159
"configuration": "./languages/mysql.language-configuration.json"
4260
}
@@ -45,7 +63,7 @@
4563
{
4664
"language": "mysql",
4765
"scopeName": "source.sql",
48-
"path": "./syntaxes/mysql.tmLanguage.json"
66+
"path": "./syntaxes/mysql.tmGrammar.json"
4967
}
5068
],
5169
"snippets": [
@@ -55,8 +73,14 @@
5573
}
5674
],
5775
"configurationDefaults": {
58-
"editor.fontSize": 12,
59-
"editor.bracketPairColorization.enabled": false,
76+
"[mysql]": {
77+
"editor.fontSize": 12,
78+
"editor.bracketPairColorization.enabled": false
79+
},
80+
"files.associations": {
81+
"*.sql": "mysql",
82+
"*.sql.*": "mysql"
83+
},
6084
"editor.tokenColorCustomizations": {
6185
"textMateRules": [
6286
{
File renamed without changes.

0 commit comments

Comments
 (0)