(by, dir)
| 9067 | } |
| 9068 | |
| 9069 | function move(by, dir) { |
| 9070 | var f = function(cm) { |
| 9071 | cm.extendSelection(findEnd(cm, cm.getCursor(), by, dir)); |
| 9072 | }; |
| 9073 | f.motion = true; |
| 9074 | return f; |
| 9075 | } |
| 9076 | |
| 9077 | function killTo(cm, by, dir) { |
| 9078 | var selections = cm.listSelections(), cursor; |
no test coverage detected