aboutsummaryrefslogtreecommitdiff
path: root/code/package.json
blob: 20a6ceee76a898bf20a5034fb9a59d3e8dc8771d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
  "name": "libsyntax-rust",
  "displayName": "libsyntax-rust",
  "description": "An experimental Rust plugin for VS Code based on libsyntax2",
  "license": "MIT",
  "repository": "http://github.com/matklad/libsyntax2/",
  "version": "0.0.1",
  "publisher": "matklad",
  "engines": {
    "vscode": "^1.25.0"
  },
  "scripts": {
    "vscode:prepublish": "tsc -p ./",
    "compile": "tsc -watch -p ./",
    "postinstall": "node ./node_modules/vscode/bin/install"
  },
  "dependencies": {
    "vscode-languageclient": "^4.4.0"
  },
  "devDependencies": {
    "@types/node": "^7.0.56",
    "typescript": "^2.9.1",
    "vsce": "^1.42.0",
    "vscode": "^1.1.18"
  },
  "main": "./out/src/extension",
  "activationEvents": [
    "onLanguage:rust"
  ],
  "contributes": {
    "commands": [
      {
        "command": "libsyntax-rust.syntaxTree",
        "title": "Show Rust syntax tree"
      },
      {
        "command": "libsyntax-rust.extendSelection",
        "title": "Rust Extend Selection"
      },
      {
        "command": "libsyntax-rust.matchingBrace",
        "title": "Rust Matching Brace"
      },
      {
        "command": "libsyntax-rust.parentModule",
        "title": "Rust Parent Module"
      },
      {
        "command": "libsyntax-rust.joinLines",
        "title": "Rust Join Lines"
      }
    ],
    "keybindings": [
      {
        "command": "libsyntax-rust.parentModule",
        "key": "ctrl+u",
        "when": "editorTextFocus && editorLangId == rust"
      },
      {
        "command": "libsyntax-rust.matchingBrace",
        "key": "ctrl+shift+m",
        "when": "editorTextFocus && editorLangId == rust"
      },
      {
        "command": "libsyntax-rust.extendSelection",
        "key": "ctrl+w",
        "when": "editorTextFocus && editorLangId == rust"
      },
      {
        "command": "libsyntax-rust.joinLines",
        "key": "ctrl+shift+j",
        "when": "editorTextFocus && editorLangId == rust"
      }
    ],
    "problemMatchers": [
      {
        "name": "rustc",
        "fileLocation": [
          "relative",
          "${workspaceRoot}"
        ],
        "pattern": [
          {
            "regexp": "^(warning|warn|error)(\\[(.*)\\])?: (.*)$",
            "severity": 1,
            "message": 4,
            "code": 3
          },
          {
            "regexp": "^([\\s->=]*(.*):(\\d*):(\\d*)|.*)$",
            "file": 2,
            "line": 3,
            "column": 4
          },
          {
            "regexp": "^.*$"
          },
          {
            "regexp": "^([\\s->=]*(.*):(\\d*):(\\d*)|.*)$",
            "file": 2,
            "line": 3,
            "column": 4
          }
        ]
      }
    ]
  }
}