Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
Created package
  • Loading branch information
Togusa09 committed Mar 6, 2016
1 parent 77e7157 commit f583e21
Show file tree
Hide file tree
Showing 7 changed files with 1,102 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
out
node_modules
*.vsix
13 changes: 13 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// A launch configuration that launches the extension inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
}
]
}
596 changes: 596 additions & 0 deletions LICENSE.md

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Visual Code - Kerbal Operating System

Adds syntax highlighting for .ks files in Microsoft Visual Code

Kerbal Operating System is available at https://github.com/KSP-KOS/KOS
12 changes: 12 additions & 0 deletions kos.configuration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"comments": {
// symbol used for single line comment. Remove this entry if your language does not support line comments
"lineComment": "//"
},
// symbols used as brackets
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
]
}
26 changes: 26 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "kos",
"displayName": "vscode-kos",
"description": "Kerbal Operating System",
"version": "0.0.1",
"publisher": "blank",
"engines": {
"vscode": "^0.10.6"
},
"categories": [
"Languages"
],
"contributes": {
"languages": [{
"id": "kos",
"aliases": ["Kerbal Operating System", "kos"],
"extensions": [".ks"],
"configuration": "./kos.configuration.json"
}],
"grammars": [{
"language": "kos",
"scopeName": "source.kos",
"path": "./syntaxes/kos.tmLanguage"
}]
}
}
Loading

0 comments on commit f583e21

Please sign in to comment.