Skip to content

Instantly share code, notes, and snippets.

@leonardfactory
Created October 27, 2014 22:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leonardfactory/bc36af183445379a4531 to your computer and use it in GitHub Desktop.
Save leonardfactory/bc36af183445379a4531 to your computer and use it in GitHub Desktop.
Mixin!
Hooks.addMenuItem("Text/Block comment", "cmd-shift-b", function ()
{
Recipe.run(function(recipe)
{
var commentsRange = recipe.contentRangeOfLinesInRange(recipe.selection);
recipe.eachLine(function(commentLine) {
return " *" + commentLine.text;
}, commentsRange);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment