diff options
-rw-r--r-- | README.md | 62 | ||||
-rw-r--r-- | package.json | 96 |
2 files changed, 57 insertions, 101 deletions
@@ -1,65 +1,21 @@ -# kopy-io-plugin README +# kopy-io-plugin -This is the README for your extension "kopy-io-plugin". After writing up a brief description, we recommend including the following sections. +Kopy.io Plugin is an unofficial plugin for VSCode of kopy.io by ActiveState. kopy.io is an online pastebin site. -## Features - -Describe specific features of your extension including screenshots of your extension in action. Image paths are relative to this README file. - -For example if there is an image subfolder under your extension project workspace: +NOTE: This is not an official plugin of kopy.io -\!\[feature X\]\(images/feature-x.png\) +## Features -> Tip: Many popular extensions utilize animations. This is an excellent way to show off your extension! We recommend short, focused animations that are easy to follow. +Instant kopy-pasting. +You can either open the kopied url/ Copy the url to your clipboard. ## Requirements -If you have any requirements or dependencies, add a section describing those and how to install and configure them. - -## Extension Settings - -Include if your extension adds any VS Code settings through the `contributes.configuration` extension point. +This plugin utilizes node.js library called "node-copy-paste" for Clipboard functionality. Some linux system needs additional software to allow clipboard access like xclip in linux and clip in windows. If you are experience any issues regarding clipboard please go through "node-copy-paste" github page. -For example: -This extension contributes the following settings: - -* `myExtension.enable`: enable/disable this extension -* `myExtension.thing`: set to `blah` to do something - -## Known Issues - -Calling out known issues can help limit users opening duplicate issues against your extension. ## Release Notes -Users appreciate release notes as you update your extension. - -### 1.0.0 - -Initial release of ... - -### 1.0.1 - -Fixed issue #. - -### 1.1.0 - -Added features X, Y, and Z. - ------------------------------------------------------------------------------------------------------------ - -## Working with Markdown - -**Note:** 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!**
\ No newline at end of file +### 0.1.0 +Initial Release
\ No newline at end of file diff --git a/package.json b/package.json index 1b5d56b..6ba38b2 100644 --- a/package.json +++ b/package.json @@ -1,52 +1,52 @@ { - "name": "kopy-io-plugin", - "displayName": "Kopy.io Plugin", - "description": "An unofficial plugin for kopy.io", - "version": "0.0.1", - "publisher": "indrajithkl", - "engines": { - "vscode": "^1.16.0" - }, - "categories": [ - "Other" - ], - "activationEvents": [ - "onCommand:extension.kopyit" - ], - "main": "./out/src/extension", - "contributes": { - "commands": [ - { - "command": "extension.kopyit", - "title": "Kopy.io it." - } + "name": "kopy-io-plugin", + "displayName": "Kopy.io Plugin", + "description": "An unofficial plugin for kopy.io", + "version": "0.2.0", + "publisher": "indrajithkl", + "engines": { + "vscode": "^1.16.0" + }, + "categories": [ + "Other" ], - "menus": { - "editor/context": [ - { - "when": "editorHasSelection", - "command": "extension.kopyit", - "group": "myGroup@1" + "activationEvents": [ + "onCommand:extension.kopyit" + ], + "main": "./out/src/extension", + "contributes": { + "commands": [ + { + "command": "extension.kopyit", + "title": "Kopy.io it." + } + ], + "menus": { + "editor/context": [ + { + "when": "editorHasSelection", + "command": "extension.kopyit", + "group": "myGroup@1" + } + ] } - ] + }, + "scripts": { + "vscode:prepublish": "npm run compile", + "compile": "tsc -p ./", + "watch": "tsc -watch -p ./", + "postinstall": "node ./node_modules/vscode/bin/install", + "test": "npm run compile && node ./node_modules/vscode/bin/test" + }, + "devDependencies": { + "typescript": "^2.5.2", + "vscode": "^1.1.5", + "mocha": "^3.5.0", + "@types/node": "^7.0.43", + "@types/mocha": "^2.2.42" + }, + "dependencies": { + "axios": "^0.16.2", + "copy-paste": "^1.3.0" } - }, - "scripts": { - "vscode:prepublish": "npm run compile", - "compile": "tsc -p ./", - "watch": "tsc -watch -p ./", - "postinstall": "node ./node_modules/vscode/bin/install", - "test": "npm run compile && node ./node_modules/vscode/bin/test" - }, - "devDependencies": { - "typescript": "^2.5.2", - "vscode": "^1.1.5", - "mocha": "^3.5.0", - "@types/node": "^7.0.43", - "@types/mocha": "^2.2.42" - }, - "dependencies": { - "axios": "^0.16.2", - "copy-paste": "^1.3.0" - } -} +}
\ No newline at end of file |