All Projects → dewski → Cmd Enter

dewski / Cmd Enter

Every textarea should let you submit comments by pressing cmd-enter or ctrl-enter. For every site that doesn't support it, a kitten weeps. Here's to making less kittens weep.

Programming Languages

javascript
184084 projects - #8 most used programming language

cmd-enter

Every textarea should let you submit comments by pressing cmd-enter or ctrl-enter. For every site that doesn't support it, a kitten weeps. Here's to making less kittens weep.

Requirements

Supported Sites

Contributing

If reddit.com is giving you a bad time and not letting you use cmd-enter to submit comments, just create a reddit.js.com file and add the JavaScript required to submit comments (example below). jQuery is available from dotjs regardless if the target site has it or not. Some sites may require multiple event listeners if they format their textareas differently throughout their site.

Here is an example of adding cmd-enter to reddit.com:

$(document).on('keydown', '.usertext-edit textarea', function(e) {
  if(e.keyCode == 13 && (e.metaKey || e.ctrlKey)) {
    $(this).parents('form').submit()
  }
})

Hints:

  • .usertext-edit textarea is the selector for all textareas we are listening to.
  • e.keyCode == 13 - 13 here is the enter key.
  • (e.metaKey || e.ctrlKey) is either the command key or ctrl key.

Note on Patches/Pull Requests

  • Fork the project.
  • Add the cmd-enter behavior to a site.
  • Add the site to the Supported Sites part of this README.
  • Send me a pull request.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].