File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 27
27
afterCursor = / ( ^ | ) c m - f a t - c u r s o r ( $ | ) / . test ( cm . getWrapperElement ( ) . className )
28
28
var re = bracketRegex ( config )
29
29
30
- // A cursor is defined as between two characters, but in in vim command mode
30
+ // A cursor is defined as between two characters, but in vim command mode
31
31
// (i.e. not insert mode), the cursor is visually represented as a
32
32
// highlighted box on top of the 2nd character. Otherwise, we allow matches
33
33
// from before or after the cursor.
Original file line number Diff line number Diff line change @@ -3733,7 +3733,7 @@ <h3 id="vimapi_extending">Extending VIM</h3>
3733
3733
been mapped to their Vim equivalents. Finds a command based on the key
3734
3734
(and cached keys if there is a multi-key sequence). Returns < code > undefined</ code >
3735
3735
if no key is matched, a noop function if a partial match is found (multi-key),
3736
- and a function to execute the bound command if a a key is matched. The
3736
+ and a function to execute the bound command if a key is matched. The
3737
3737
function always returns true.
3738
3738
</ dd >
3739
3739
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ function updateWidgetHeight(line) {
58
58
}
59
59
60
60
// Compute the lines that are visible in a given viewport (defaults
61
- // the the current scroll position). viewport may contain top,
61
+ // the current scroll position). viewport may contain top,
62
62
// height, and ensure (see op.scrollToPos) properties.
63
63
export function visibleLines ( display , doc , viewport ) {
64
64
let top = viewport && viewport . top != null ? Math . max ( 0 , viewport . top ) : display . scroller . scrollTop
You can’t perform that action at this time.
0 commit comments