Skip to content

Commit 0a48aeb

Browse files
committed
Remove unused parameter
1 parent e8c4754 commit 0a48aeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/vim-state.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ module.exports = class VimState {
354354
// What's this?
355355
// clear all selections and final cursor position becomes head of last selection (optionally first selection)
356356
// editor.clearSelections() does not respect last selection's head, since it merge all selections before clearing.
357-
clearSelections ({head = 'last'} = {}) {
357+
clearSelections () {
358358
const position = (this.getConfig('clearMultipleCursorsToFirstPosition'))
359359
? this.editor.getCursorBufferPositions()[0]
360360
: this.editor.getCursorBufferPosition()

0 commit comments

Comments
 (0)