Skip to content

Commit 86fb920

Browse files
author
Kavan Shaban
committed
Extension core completed.
1 parent dfb8295 commit 86fb920

13 files changed

Lines changed: 449 additions & 201 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
*.vsix

.vscode/launch.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// A launch configuration that launches the extension inside a new window
2+
{
3+
"version": "0.1.0",
4+
"configurations": [
5+
{
6+
"name": "Launch Extension",
7+
"type": "extensionHost",
8+
"request": "launch",
9+
"runtimeExecutable": "${execPath}",
10+
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
11+
"stopOnEntry": false
12+
},
13+
{
14+
"name": "Launch Tests",
15+
"type": "extensionHost",
16+
"request": "launch",
17+
"runtimeExecutable": "${execPath}",
18+
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/test" ],
19+
"stopOnEntry": false
20+
}
21+
]
22+
}

.vscodeignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.vscode/**
2+
typings/**
3+
test/**
4+
.gitignore
5+
jsconfig.json

LICENSE

Lines changed: 0 additions & 201 deletions
This file was deleted.

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# VsCode - Github-File-Folder-Url
2+
3+
VsCode Extension that gets a Github url with optional line selection for files and folders.
4+
5+
Usage: `Ctrl+Alt+G` gets url copies it to the clipboard
6+
7+
Usage: `Ctrl+Alt+Shift+G` gets url and line selection copies it to the clipboard
8+
9+
Usage: `Ctrl+Alt+Z` gets url for all open files and copies them to clipboard
10+
11+
## Install
12+
13+
1. Within Visual Studio Code, open the command palette (`Ctrl-Shift-P` / `Cmd-Shift-P`)
14+
2. Type `install extension` and search for `Github-File-Folder-Url`

0 commit comments

Comments
 (0)