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
Copy file name to clipboardExpand all lines: README.md
+23-4Lines changed: 23 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,13 @@
1
1
# Flink-SQL-Helper
2
-
Help you efficiently and focus on FlinkSQL development. support Flink SQL error grammar check, syntax highlighting, complete keywords, rename, find all references and code format, including user-defined functions.
3
2
3
+
Help you efficiently and focus on FlinkSQL development. support Flink SQL error grammar check, syntax highlighting, complete keywords, rename, find all references and code format, including user-defined functions.
4
4
5
5
> I suggest that you develop and debug on vscode based on the information (https://code.visualstudio.com/docs/java/java-debugging) to obtain a better experience.
6
6
7
7
## 1.Features
8
8
9
9
### 1.1 Grammar Check
10
+
10
11
Setting plugin config like
11
12
1.
12
13
2.
@@ -20,47 +21,64 @@ example:
20
21
-
21
22
22
23
### 1.2 Refactorings
24
+
23
25

24
26
25
27
### 1.3 Code Completion Proposals
28
+
26
29

27
30
28
-
### 1.4 Snippets
31
+
### 1.4 Snippets
32
+
29
33
snippets keywords:
34
+
30
35
- create
31
36
- select
32
37
- insert
33
38
- join
34
39
- windows
35
40
36
41
#### create
42
+
37
43

38
-
#### select
44
+
45
+
#### select
46
+
39
47

48
+
40
49
#### insert
50
+
41
51

42
52
43
53
#### join
54
+
44
55

45
56
46
57
#### windows
58
+
47
59

48
60
61
+
### 1.5 Find All References
49
62
50
-
### 1.5 Find All References
51
63

64
+
52
65
### 1.6 Code Format
66
+
53
67
Select your FlinkSQL code and press ```Alt+Shift+f```.
54
68
55
69
## 2. User Guide
70
+
56
71
Enable the extension on your file, either name the file with a extension:
72
+
57
73
- SQL
58
74
- FQL
59
75
60
76
Or press F1, type 'Change Language Mode', and then choose FlinkSQL.
61
77
62
78
### 2.1 Color theme recommend
79
+
63
80
Press F1, choose `Preference: Open User Setting(JSON)` then paste:
81
+
64
82
~~~json
65
83
{
66
84
"editor.tokenColorCustomizations": {
@@ -195,4 +213,5 @@ Press F1, choose `Preference: Open User Setting(JSON)` then paste:
195
213
}
196
214
}
197
215
~~~
216
+
198
217
We provide so many options to allow developers to better customize their favorite themes. if you want to deep in, please see the `syntaxes/flink.tmLanguage.json` to understand keyword and color theme mapping.
0 commit comments