Last active
December 29, 2015 14:49
-
-
Save prettydiff/7686553 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*global define, brackets, console*/ | |
define(function (require, exports, module) { | |
"use strict"; | |
var CommandManager = brackets.getModule("command/CommandManager"), | |
Menus = brackets.getModule("command/Menus"), | |
EditorManager = brackets.getModule("editor/EditorManager"), | |
Editor = brackets.getModule("editor/Editor").Editor, | |
DocumentManager = brackets.getModule("document/DocumentManager"), | |
Document = brackets.getModule("document/Document"), | |
ProjectManager = brackets.getModule("project/ProjectManager"), | |
menu = Menus.getMenu(Menus.AppMenuBar.EDIT_MENU), | |
Beau_ID = "austincheney.prettydiff.beautify", | |
Mini_ID = "austincheney.prettydiff.minify", | |
tab = Editor.getUseTabChar(), | |
pd = require("prettydiff"), | |
text = "", | |
command = [], | |
beautify = function () { | |
var args = {}, | |
output = ""; | |
args.mode = "beautify"; | |
args.source = DocumentManager.getCurrentDocument().getText(); | |
if (tab === true) { | |
args.inchar = "\t"; | |
} | |
//output = pd(args); | |
console.log(pd); | |
}, | |
minify = function () { | |
console.log("qwer"); | |
}; | |
CommandManager.register("Beautify", Beau_ID, beautify); | |
command = [{ | |
key: "Ctrl-Shift-B", | |
platform: "win" | |
}, { | |
key: "Cmd-Shift-B", | |
platform: "mac" | |
}]; | |
menu.addMenuItem(Beau_ID, command, "BEFORE", "edit.find"); | |
CommandManager.register("Minify", Mini_ID, minify); | |
command = [{ | |
key: "Ctrl-Shift-M", | |
platform: "win" | |
}, { | |
key: "Cmd-Shift-M", | |
platform: "mac" | |
}]; | |
menu.addMenuItem(Mini_ID, command, "BEFORE", "edit.find"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment