-
-
Notifications
You must be signed in to change notification settings - Fork 24
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
Sublime Text 4: #386
Labels
Comments
Sublime Text 4 配置开发环境:
下载安装:
通用必装插件:
|
Sublime Text 4 配置 Rust 开发环境:
配置步骤:
➤ which rust-analyzer
/opt/homebrew/bin/rust-analyzer
➤ rust-analyzer --version
rust-analyzer 0.0.0 (67920f797 2022-09-04)
// Settings in here override those in "LSP-rust-analyzer/LSP-rust-analyzer.sublime-settings"
{
"selector": "source.rust",
"command": ["/opt/homebrew/bin/rust-analyzer"],
}
|
Sublime Text 4 配置 zig 开发环境:
// Settings in here override those in "LSP/LSP.sublime-settings"
{
"clients": {
"zig": {
"command": ["/Users/dev/zls/zls"],
"enabled": true,
"selector": "source.zig"
}
}
} |
sublime text 快捷键更改:
[
{ "keys": ["super+["], "command": "goto_definition" },
{ "keys": ["super+]"], "command": "jump_back" },
]
|
1 |
1 similar comment
1 |
3 tasks
Open
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
related:
The text was updated successfully, but these errors were encountered: