Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ewen-lbh committed Apr 27, 2024
1 parent 37b80bf commit 33d9f23
Showing 1 changed file with 25 additions and 13 deletions.
38 changes: 25 additions & 13 deletions vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "VSCode extension for HyprLS",
"author": "Ewen Le Bihan <[email protected]>",
"license": "MIT",
"version": "0.0.1",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/ewen-lbh/hyprlang-ls"
Expand All @@ -15,19 +15,31 @@
"vscode": "^1.75.0"
},
"contributes": {
"languages": [{
"id": "hyprlang",
"aliases": ["HyprLang"],
"extensions": [".hl"],
"filenamePatterns": ["hypr*.conf"]
}],
"commands": [{
"category": "HyprLS",
"title": "Restart language server",
"command": "vscode-hyprls.restart-lsp"
}]
"languages": [
{
"id": "hyprlang",
"aliases": [
"HyprLang"
],
"extensions": [
".hl"
],
"filenamePatterns": [
"hypr*.conf"
]
}
],
"commands": [
{
"category": "HyprLS",
"title": "Restart language server",
"command": "vscode-hyprls.restart-lsp"
}
]
},
"activationEvents": [ "onLanguage:hyprlang" ],
"activationEvents": [
"onLanguage:hyprlang"
],
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
Expand Down

0 comments on commit 33d9f23

Please sign in to comment.