diff options
author | Aleksey Kladov <[email protected]> | 2018-08-10 23:04:09 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-08-10 23:04:09 +0100 |
commit | f99551f46b1583ed43751e4d26fe76a0b913eb5f (patch) | |
tree | f0ab26d58c5bfd7237eb2f0117fcc141a1c3a5f4 /codeless/package.json | |
parent | 9863b9161d8d702848516be70c5c8161b7f382e8 (diff) |
reorganize
Diffstat (limited to 'codeless/package.json')
-rw-r--r-- | codeless/package.json | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/codeless/package.json b/codeless/package.json deleted file mode 100644 index 1df932db1..000000000 --- a/codeless/package.json +++ /dev/null | |||
@@ -1,48 +0,0 @@ | |||
1 | { | ||
2 | "name": "libsyntax-rust", | ||
3 | "displayName": "libsyntax-rust", | ||
4 | "description": "An experimental Rust plugin for VS Code based on libsyntax2", | ||
5 | "license": "MIT", | ||
6 | "repository": "http://github.com/matklad/libsyntax2/", | ||
7 | "version": "0.0.1", | ||
8 | "publisher": "matklad", | ||
9 | "engines": { | ||
10 | "vscode": "^1.25.0" | ||
11 | }, | ||
12 | "scripts": { | ||
13 | "compile": "tsc -p ./", | ||
14 | "postinstall": "node ./node_modules/vscode/bin/install" | ||
15 | }, | ||
16 | "dependencies": { | ||
17 | "vscode-languageclient": "^4.3.0" | ||
18 | }, | ||
19 | "devDependencies": { | ||
20 | "@types/node": "^7.0.56", | ||
21 | "typescript": "^2.9.1", | ||
22 | "vsce": "^1.42.0", | ||
23 | "vscode": "^1.1.18" | ||
24 | }, | ||
25 | "main": "./out/src/extension", | ||
26 | "activationEvents": [ | ||
27 | "onLanguage:rust" | ||
28 | ], | ||
29 | "contributes": { | ||
30 | "commands": [ | ||
31 | { | ||
32 | "command": "libsyntax-rust.syntaxTree", | ||
33 | "title": "Show Rust syntax tree" | ||
34 | }, | ||
35 | { | ||
36 | "command": "libsyntax-rust.extendSelection", | ||
37 | "title": "Rust Extend Selection" | ||
38 | } | ||
39 | ], | ||
40 | "keybindings": [ | ||
41 | { | ||
42 | "command": "libsyntax-rust.extendSelection", | ||
43 | "key": "ctrl+w", | ||
44 | "when": "editorTextFocus && editorLangId == rust" | ||
45 | } | ||
46 | ] | ||
47 | } | ||
48 | } | ||