Skip to content

Commit

Permalink
Move gotoLine into the search package
Browse files Browse the repository at this point in the history
BREAKING: The `gotoLine` command is now part of the search package.
  • Loading branch information
marijnh committed Dec 28, 2020
1 parent cc85e38 commit 9f63142
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/basic-setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import {searchKeymap} from "@codemirror/next/search"
import {autocompletion, completionKeymap} from "@codemirror/next/autocomplete"
import {commentKeymap} from "@codemirror/next/comment"
import {rectangularSelection} from "@codemirror/next/rectangular-selection"
import {gotoLineKeymap} from "@codemirror/next/goto-line"
import {highlightActiveLine, highlightSelectionMatches} from "@codemirror/next/highlight-selection"
import {defaultHighlightStyle} from "@codemirror/next/highlight"
import {lintKeymap} from "@codemirror/next/lint"
Expand Down Expand Up @@ -39,7 +38,6 @@ import {lintKeymap} from "@codemirror/next/lint"
/// - [active line highlighting](#highlight-selection.highlightActiveLine)
/// - [selection match highlighting](#highlight-selection.highlightSelectionMatches)
/// - [search](#search.searchKeymap)
/// - [go to line](#goto-line.gotoLineKeymap)
/// - [commenting](#comment.commentKeymap)
/// - [linting](#lint.lintKeymap)
///
Expand Down Expand Up @@ -73,7 +71,6 @@ export const basicSetup: Extension = [
...historyKeymap,
...foldKeymap,
...commentKeymap,
...gotoLineKeymap,
...completionKeymap,
...lintKeymap
])
Expand Down

0 comments on commit 9f63142

Please sign in to comment.