(cm, repeat)
| 12714 | } |
| 12715 | |
| 12716 | function moveToColumn(cm, repeat) { |
| 12717 | // repeat is always >= 1, so repeat - 1 always corresponds |
| 12718 | // to the column we want to go to. |
| 12719 | var line = cm.getCursor().line; |
| 12720 | return clipCursorToContent(cm, Pos(line, repeat - 1)); |
| 12721 | } |
| 12722 | |
| 12723 | function updateMark(cm, vim, markName, pos) { |
| 12724 | if (!inArray(markName, validMarks)) { |
no test coverage detected