Why?

Submits forms using Cmd + Enter (Mac) or Win + Ctrl (Windows) is a well known key combination that you may already use on Twitter, GitHub, Facebook, and another mayor sites.

It's great because is faster than move your mouse or hit tab to reach the submit button, you can save a few key strokes!.

How to install

$ npm install cmdenter

Use

Just create a new CmdEnter.js instance and you are ready to go
<script>
  new CmdEnter();
</script>
This will bind the `cmd + enter` key combination to all `textarea` elements on the page. Optionally you can specify a CSS selector as first parameter. Example:
<script>
  new CmdEnter('.comment')
  new CmdEnter('#description')
  new CmdEnter('form#register textarea')
</script>