David Windham 1 week ago
parent
commit
2124f3d3d8
2 changed files with 15 additions and 4 deletions
  1. 12 1
      README.md
  2. 3 3
      package.json

+ 12 - 1
README.md

@@ -2,7 +2,18 @@
 
  Adds a hyperlink to a wikipedia article for the currently selected text in a markdown or html file
 
----
+ **Usage**: 
+
+ ```js
+     "commands": [
+      {
+        "command": "wikipedia-link.addHyperlink",
+        "title": "Wikipedia: add link"
+      }
+    ]
+```
+
+
 
 ## Notes
 

+ 3 - 3
package.json

@@ -5,7 +5,7 @@
   "displayName": "Wikipedia Link",
   "description": "Adds Wikipedia hyperlinks to markdown and HTML",
   "homepage": "https://github.com/windhamdavid/vscode-wikipedia-link#readme",
-  "version": "0.1.2",
+  "version": "0.1.3",
   "repository": {
     "type": "git",
     "url": "https://github.com/windhamdavid/vscode-wikipedia-link.git"
@@ -37,8 +37,8 @@
   "contributes": {
     "commands": [
       {
-        "command": "wikipedia-hyperlinker.addHyperlink",
-        "title": "Wikipedia Hyperlinker: Add Hyperlink"
+        "command": "wikipedia-link.addHyperlink",
+        "title": "Wikipedia: add link"
       }
     ]
   },