Update package.json
This commit is contained in:
Родитель
63a874fa8d
Коммит
11578844ee
|
@ -1,2 +1,3 @@
|
|||
out
|
||||
node_modules
|
||||
node_modules
|
||||
*.vsix
|
|
@ -0,0 +1,2 @@
|
|||
this is a test
|
||||
MIT
|
16
extension.ts
16
extension.ts
|
@ -116,17 +116,11 @@ function textFunctions() {
|
|||
break;
|
||||
case "ASCII Art":
|
||||
items = [];
|
||||
items.push({ label: "Standard", description: "User the Standard font" });
|
||||
items.push({ label: "Graffiti", description: "User the Graffiti font" });
|
||||
items.push({ label: "Banner", description: "User the Banner font" });
|
||||
items.push({ label: "Basic", description: "User the Basic font" });
|
||||
items.push({ label: "Cybermedium", description: "User the Cybermedium font" });
|
||||
items.push({ label: "Larry 3D", description: "User the Larry 3D font" });
|
||||
items.push({ label: "Nancyj", description: "User the Nancyj font" });
|
||||
items.push({ label: "Poison", description: "User the Poison font" });
|
||||
items.push({ label: "Star Wars", description: "User the Star Wars font" });
|
||||
|
||||
Window.showQuickPick(items).then((selection) => {
|
||||
figlet.fontsSync().forEach(function (font) {
|
||||
items.push({ label: font, description: "User the "+ font + " font" });
|
||||
}, this);
|
||||
|
||||
Window.showQuickPick(items).then(function (selection) {
|
||||
processSelection(e, d, sel, figlet.textSync, [selection.label]);
|
||||
});
|
||||
break;
|
||||
|
|
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 31 KiB |
|
@ -1,13 +1,17 @@
|
|||
{
|
||||
"name": "MDTools",
|
||||
"description": "Text replacement for Markdown",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.2",
|
||||
"publisher": "seanmcbreen",
|
||||
"displayName": "Markdown Tools",
|
||||
"keywords": [
|
||||
"$featured",
|
||||
"_Markdown",
|
||||
"ASCII Art",
|
||||
"Text"
|
||||
],
|
||||
"license":"SEE LICENSE IN LICENSE.md",
|
||||
"icon": "images/icon.jpg",
|
||||
"activationEvents": [
|
||||
"onLanguage:markdown"
|
||||
],
|
||||
|
@ -35,7 +39,8 @@
|
|||
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
|
||||
},
|
||||
"dependencies": {
|
||||
"underscore.string": "^3.2.2"
|
||||
"underscore.string": "^3.2.2",
|
||||
"figlet": "^1.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"vscode": "*"
|
||||
|
|
Загрузка…
Ссылка в новой задаче