aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIndrajith K L2017-09-21 11:57:22 +0530
committerIndrajith K L2017-09-21 11:57:22 +0530
commit5770dc93c7db6f30bce4b1916e52f5c0d634ee98 (patch)
tree41f9d4e42c9c1f1daa4d46ea62908c79b01cc6d2
parent05f3f294e4c91a43fc78f014ff0e1e914d2b5af9 (diff)
downloadKopyPlugin-5770dc93c7db6f30bce4b1916e52f5c0d634ee98.tar.gz
KopyPlugin-5770dc93c7db6f30bce4b1916e52f5c0d634ee98.tar.bz2
KopyPlugin-5770dc93c7db6f30bce4b1916e52f5c0d634ee98.zip
Initial release
-rw-r--r--README.md62
-rw-r--r--package.json96
2 files changed, 57 insertions, 101 deletions
diff --git a/README.md b/README.md
index b2b60f8..93b446b 100644
--- a/README.md
+++ b/README.md
@@ -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