# Install plugins
Dart
Code Runner
Shift+Alt+F # 代码格式化
showActiveFileInExplorer => ctrl + shift + R
revealFileInOS => ctrl + U #打开当前文件所在文件夹
转到编辑器中的符号 workbench.action.gotoSymbol # 文件内查看方法列表
在Finder中显示 => ⌃ + u
Chinese (Simplified) Language Pack for Visual Studio Code
C# for Visual Studio Code (powered by OmniSharp)
Debugger for Unity
Unity Code Snippets
EmmyLua # 断点单步调试lua
C# Snippets
Lua - Lua Language Server coded by Lua sumneko # lua语法错误会自动提示报错
flutter
# 自动闭合HTML/XML标签
Auto Close Tag
# 自动完成另一侧标签的同步修改
Auto Rename Tag
# 格式化 html ,js,css
Beautify
# 智能提示CSS类名以及id
HTML CSS Support
# 智能提示HTML标签,以及标签含义
HTML Boilerplate
Open in Browser
javascript debugger
通义灵码
提示你多余空格
bookmarks.tootgle
bookmarks.jumpToNext
bookmarks.jumpToPrevious
必须放在lua程序入口调用
local function tryCatch(block)
local try = block[1]
assert(try)
pcall(try)
end
tryCatch
{
function ()
package.cpath = package.cpath .. ';C:/Users/user/.vscode/extensions/tangzx.emmylua-0.5.11/debugger/emmy/windows/x64/?.dll;/Users/marstau/.vscode/extensions/tangzx.emmylua-0.5.11/debugger/emmy/mac/x64/emmy_core.dylib'
local dbg = require('emmy_core')
dbg.tcpConnect('localhost', 9966)
emmy = false
end
}
vscode中的launch.json配置
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "emmylua_new",
"request": "launch",
"name": "EmmyLua New Debug",
"host": "localhost",
"port": 9966,
"ext": [
".lua",
".lua.txt",
".lua.bytes"
],
"ideConnectDebugger": false
},
]
}
卸掉vscode重装好了, 关闭插件相关的自动更新选项
开启 OmniSharp 服务, .vscode/settings.json
中加入以下
"dotnet.server.useOmnisharp": true,
"omnisharp.enableAsyncCompletion": false,
"omnisharp.enableEditorConfigSupport": true
确保设置中搜索OmniSharp能搜索到.
File->Preferences->Color Theme->Monikai
1 reference
Preferences中关闭下列两个
editor.suggest.showReferences
csharp.referencesCodeLens.enabled
files.exclude添加**/*.meta
{
"version": "0.2.0",
"configurations": [
{
"name": "Unity Editor",
"type": "unity",
"path": "C:/project/Library/EditorInstance.json",
"request": "launch"
},
{
"name": "Windows Player",
"type": "unity",
"request": "launch"
},
{
"name": "OSX Player",
"type": "unity",
"request": "launch"
},
{
"name": "Linux Player",
"type": "unity",
"request": "launch"
},
{
"name": "iOS Player",
"type": "unity",
"request": "launch"
},
{
"name": "Android Player",
"type": "unity",
"request": "launch"
},
{
"name": "Xbox One Player",
"type": "unity",
"request": "launch"
},
{
"name": "PS4 Player",
"type": "unity",
"request": "launch"
},
{
"name": "SwitchPlayer",
"type": "unity",
"request": "launch"
}
]
}