Skip to content

Instantly share code, notes, and snippets.

@colelawrence
Last active August 29, 2015 14:03
Show Gist options
  • Save colelawrence/c089bd720c41f4a40610 to your computer and use it in GitHub Desktop.
Save colelawrence/c089bd720c41f4a40610 to your computer and use it in GitHub Desktop.
CodeMirror esc reduce selections with sublime keys
$(window).keyup(function(e) {
// esc - reduce selections
if(e.which === 27) {
var cmSel = $(".active-container.last-active .active-sub-container .CodeMirror")
if (cmSel.length === 0)
cmSel = $(".active-container.last-active .CodeMirror")
if (cmSel.length) {
var cm = cmSel[0].CodeMirror
cm.execCommand("singleSelectionTop")
cm.focus()
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment