Skip to content

Commit

Permalink
Update to new format required for VS Code
Browse files Browse the repository at this point in the history
  • Loading branch information
mattslay committed Dec 29, 2015
1 parent b44ec05 commit 9251628
Show file tree
Hide file tree
Showing 11 changed files with 2,497 additions and 238 deletions.
37 changes: 0 additions & 37 deletions README.md

This file was deleted.

13 changes: 13 additions & 0 deletions foxpro/.vscode/launch.json
@@ -0,0 +1,13 @@
// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
}
]
}
13 changes: 13 additions & 0 deletions foxpro/README.md
@@ -0,0 +1,13 @@
# README
## This is the README for your extension "Foxpro"
You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:

* Split the editor (`Cmd+\` on OSX or `Ctrl+\` on Windows and Linux)
* Toggle preview (`Shift+CMD+V` on OSX or `Shift+Ctrl+V` on Windows and Linux)
* Press `Ctrl+Space` (Windows, Linux) or `Cmd+Space` (OSX) to see a list of Markdown snippets

### For more information
* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)

** Enjoy!**
14 changes: 14 additions & 0 deletions foxpro/foxpro.configuration.json
@@ -0,0 +1,14 @@
{
"comments": {
// symbol used for single line comment. Remove this entry if your language does not support line comments
"lineComment": "*",
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
"blockComment": [ "/*", "*/" ]
},
// symbols used as brackets
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
]
}
26 changes: 26 additions & 0 deletions foxpro/package.json
@@ -0,0 +1,26 @@
{
"name": "FoxPro",
"displayName": "FoxPro",
"description": "Visual FoxPro",
"version": "0.0.1",
"publisher": "MattSlay",
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Languages"
],
"contributes": {
"languages": [{
"id": "foxpro",
"aliases": ["foxpro", "Visual FoxPro", "VFP"],
"extensions": [".prg", ".PRG"],
"configuration": "./foxpro.configuration.json"
}],
"grammars": [{
"language": "foxpro",
"scopeName": ".foxpro",
"path": "./syntaxes/foxpro.plist"
}]
}
}

0 comments on commit 9251628

Please sign in to comment.