Skip to content

Commit

Permalink
Remove extras
Browse files Browse the repository at this point in the history
  • Loading branch information
icebeat committed May 21, 2012
1 parent 51eff36 commit e206f05
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion js/commands.js
Expand Up @@ -591,7 +591,6 @@ Extend(Editor.prototype, {
},

selectLine: function (position) {
console.log(this.width)
var from = this.getPositionFromPoint(0, position.y), to = this.getPositionFromPoint(this.width, position.y);
this.updateView(from, to);
},
Expand Down
7 changes: 3 additions & 4 deletions js/events.js
Expand Up @@ -218,7 +218,7 @@ var keyBindings = {
"up": "goLineUp",
"down": "goLineDown",
"end": "goLineEnd",
"home": "goLineStartSmart",
"home": "goDocStart",
"pageUp": "goPageUp",
"pageDown": "goPageDown",
"delete": "delCharRight",
Expand All @@ -227,7 +227,6 @@ var keyBindings = {
"shift+tab": "indentLess",
"enter": "newlineAndIndent",
"insert": "toggleOverwrite",
"super+enter": "smartNewlineAndIndent",
/* Commands */
"super+d": "toggleFocusMode",
"super+a": "selectAll",
Expand Down Expand Up @@ -256,8 +255,8 @@ var keyBindings = {
"super+i": "makeEmphasis",
//"super+d": "makeDelete",
"super+l": "toggleToDo",
"super+tab": "toggleDocument",
"super+e": "toggleWidth",
// "super+tab": "toggleDocument",
// "super+e": "toggleWidth",
/* emacsy */
"Ctrl-F": "goCharRight",
"Ctrl-B": "goCharLeft",
Expand Down

0 comments on commit e206f05

Please sign in to comment.