-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support built-in sql snippets #154
base: next
Are you sure you want to change the base?
Conversation
ts失败了 |
需要等dt-sql-parser出包 |
@@ -80,6 +81,27 @@ export function setupLanguageFeatures( | |||
} | |||
} | |||
|
|||
function getDefaultSnippets(languageId: LanguageIdEnum) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
当前文件函数内容缩进异常
@@ -183,5 +185,17 @@ export const completionService: CompletionService = async function ( | |||
} | |||
} | |||
} | |||
return [...syntaxCompletionItems, ...keywordsCompletionItems]; | |||
|
|||
const snippetCompletionItems: ICompletionItem[] = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
当前文件缩进异常
0f29fa6
to
1475738
Compare
fdbb7cc
to
d7f0ac5
Compare
All works done, wait to upgrade dt-sql-parser. |
dt-sql-parser@4.1.0-beta.8 试一下 |
ok了 |
新增功能: #23 支持SQL代码片段
功能描述:对每种语言内置部分常用的SQL片段,在合适的时机可以通过关键字或者空格触发代码片段补全列表
Preview
使用方式:
默认情况下自动启用内置的代码片段,如果自定义了
completionService
, 则需要在completionService
中将snippets
返回需要手动包裹
snippets
补全项并返回设置自定义用户片段
snippets 配置参数与 vscode 的 snippet 基本相同, 详见 vscode snippets
使用
setupLanguageFeatures
方式配置的snippets
, 只有在当前输入上下文为新语句开头时才能在completionService
中访问到,如果不需要该特性, 可以直接在completionService
中使用自己的代码片段列表