This commit is contained in:
Sean McBreen 2015-10-30 10:46:11 -07:00
Родитель 63a874fa8d
Коммит 11578844ee
5 изменённых файлов: 16 добавлений и 14 удалений

3
.gitignore поставляемый
Просмотреть файл

@ -1,2 +1,3 @@
out
node_modules
node_modules
*.vsix

2
LICENSE.md Normal file
Просмотреть файл

@ -0,0 +1,2 @@
this is a test
MIT

Просмотреть файл

@ -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;

Двоичные данные
images/icon.jpg Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 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": "*"