Skip to content

Instantly share code, notes, and snippets.

@lumenwrites
Last active November 5, 2016 23:49
Show Gist options
  • Save lumenwrites/4c3b908fa917ae25ff3e3936d573134e to your computer and use it in GitHub Desktop.
Save lumenwrites/4c3b908fa917ae25ff3e3936d573134e to your computer and use it in GitHub Desktop.
This script creates a shortcut (Alt+d) that adds a tag with the current date at the end of the card.
app.get('cards').models.map(function(c) {
Mousetrap.bind('alt+d', function(e) {
var today = new Date();
var dd = today.getDate();
var mm = today.getMonth()+1; //January is 0!
var yyyy = today.getFullYear();
if(dd<10) {
dd='0'+dd
}
if(mm<10) {
mm='0'+mm
}
today = '#'+yyyy+'-'+mm+'-'+dd;
var id = app.get('cardId');
var c = app.get('cards')._byId[id];
c.saveContent(c.get('content') + '\n' + today);
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment