This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from gopcode/init_pr
init commit
- Loading branch information
Showing
42 changed files
with
7,310 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
language: node_js | ||
|
||
node_js: | ||
- "8.11.1" | ||
|
||
install: | ||
- npm install -g typescript | ||
- npm install | ||
|
||
script: | ||
- tsc -p ./ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Run Extension", | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceFolder}" | ||
], | ||
"outFiles": [ | ||
"${workspaceFolder}/out/**/*.js" | ||
], | ||
"preLaunchTask": "${defaultBuildTask}" | ||
}, | ||
{ | ||
"name": "Extension Tests", | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceFolder}", | ||
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index" | ||
], | ||
"outFiles": [ | ||
"${workspaceFolder}/out/test/**/*.js" | ||
], | ||
"preLaunchTask": "${defaultBuildTask}" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"git.ignoreLimitWarning": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
src/**/* | ||
test/ | ||
third_party/ | ||
typings/**/* | ||
.vscode/**/* | ||
tsconfig.json | ||
.gitignore | ||
**/*.map | ||
**/tslint.json | ||
build/**/* | ||
docs/ | ||
*.md.nightly | ||
.github/**/* | ||
.prettierrc.json | ||
out/test/** | ||
.vscode-test/** | ||
SECURITY.md | ||
node_modules/* | ||
out/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,32 @@ | ||
# vscode-gop | ||
GoPlus (Go+) Plugin for vscode | ||
![logo](./images/icon.png) | ||
|
||
[![Build Status](https://travis-ci.org/gopcode/vscode-goplus.svg?branch=master)](https://travis-ci.org/github/gopcode/vscode-goplus) | ||
[![License](https://img.shields.io/badge/license-Apache-blue.svg)](https://raw.githubusercontent.com/gopcode/vscode-goplus/master/LICENSE) | ||
|
||
# GoPlus (Go+) Plugin for vscode | ||
|
||
This extension provides rich language support for the Go+ programming language in VS Code. | ||
|
||
## Example | ||
|
||
![example](https://github.com/gopcode/vscode-goplus/blob/master/images/example3.gif) | ||
|
||
## Install Go | ||
Before you start coding, make sure that you have already installed Go, as explained in the Go installation guide. | ||
|
||
If you are unsure whether you have installed Go, open the Command Palette in VS Code (Ctrl+Shift+P) and run the goplus | ||
|
||
## Feature Support | ||
|
||
- [x] Syntax Highlight | ||
- [x] Auto Snippet | ||
- [x] Format Source Code | ||
- [ ] Semantic Highlight | ||
- [x] Auto Completion | ||
- [x] Hover function Display | ||
- [X] Auto import | ||
- [ ] Code Diagnostics | ||
- [ ] Help With Function and Method Signatures | ||
- [x] Show Definitions of a Symbol | ||
- [ ] Find All References to a Symbol | ||
- [ ] Highlight All Occurrences of a Symbol in a Document |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"iconDefinitions": { | ||
"_goplus_": { | ||
"iconPath": "../images/icon.png" | ||
} | ||
}, | ||
|
||
"fileExtensions": { | ||
"gop": "_goplus_" | ||
}, | ||
"languageIds": { | ||
"gop": "_goplus_" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"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": [ | ||
["{", "}"], | ||
["[", "]"], | ||
["(", ")"] | ||
], | ||
// symbols that are auto closed when typing | ||
"autoClosingPairs": [ | ||
["{", "}"], | ||
["[", "]"], | ||
["(", ")"], | ||
["\"", "\""], | ||
["'", "'"] | ||
], | ||
// symbols that can be used to surround a selection | ||
"surroundingPairs": [ | ||
["{", "}"], | ||
["[", "]"], | ||
["(", ")"], | ||
["\"", "\""], | ||
["'", "'"] | ||
] | ||
} |
Oops, something went wrong.