Skip to content

Instantly share code, notes, and snippets.

@cs278
Last active August 29, 2015 14:04
Show Gist options
  • Save cs278/ed7915809358192b0f26 to your computer and use it in GitHub Desktop.
Save cs278/ed7915809358192b0f26 to your computer and use it in GitHub Desktop.
List GitHub hotkeys.
$('[data-hotkey]').map(function() {
var $this = $(this);
return '\''
+ ($this.text().trim() || $this.attr('href') || $this.attr('placeholder'))
+ '\': '
+ $this.data('hotkey').replace(/, */, ' or ');
}).toArray().join("\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment