diff --git a/.ok b/.ok index 78aef2f..5bea62b 100644 --- a/.ok +++ b/.ok @@ -1,2 +1,3 @@ install: cargo build --release; rm c:/dev/tools/neovide.* -ErrorAction SilentlyContinue; cp ./target/release/neovide.exe c:/dev/tools/neovide.exe check: cargo fmt --all -- --check +code: code . -g {0}:{1}:{2} diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d96f406 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,19 @@ +{ + // 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": [ + { + "name": "(Windows) Launch", + "type": "cppvsdbg", + "request": "launch", + "program": "${workspaceRoot}/target/debug/neovide.exe", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceRoot}", + "environment": [], + "externalConsole": true + }, + ] +} \ No newline at end of file