diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index f1da46efb48..00000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - // 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": "lldb", - "request": "launch", - "name": "Debug executable 'alacritty'", - "cargo": { - "args": [ - "build", - "--bin=alacritty", - "--package=alacritty" - ], - "filter": { - "name": "alacritty", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug unit tests in executable 'alacritty'", - "cargo": { - "args": [ - "test", - "--no-run", - "--bin=alacritty", - "--package=alacritty" - ], - "filter": { - "name": "alacritty", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug integration test 'config'", - "cargo": { - "args": [ - "test", - "--no-run", - "--test=config", - "--package=alacritty_config_derive" - ], - "filter": { - "name": "config", - "kind": "test" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug unit tests in library 'alacritty_terminal'", - "cargo": { - "args": [ - "test", - "--no-run", - "--lib", - "--package=alacritty_terminal" - ], - "filter": { - "name": "alacritty_terminal", - "kind": "lib" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug integration test 'ref'", - "cargo": { - "args": [ - "test", - "--no-run", - "--test=ref", - "--package=alacritty_terminal" - ], - "filter": { - "name": "ref", - "kind": "test" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - } - ] -} \ No newline at end of file