Skip to content

Commit

Permalink
disable gtd bundle (#1493)
Browse files Browse the repository at this point in the history
  • Loading branch information
akshayka committed May 26, 2024
1 parent 3e12d05 commit 35a4a8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/core/codemirror/cm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ import {
clickablePlaceholderExtension,
smartPlaceholderExtension,
} from "./placeholder/extensions";
import { goToDefinitionBundle } from "./go-to-definition/extension";

export interface CodeMirrorSetupOpts {
cellId: CellId;
Expand Down Expand Up @@ -93,7 +92,8 @@ export const setupCodeMirror = ({
// Comes last so that it can be overridden
basicBundle(completionConfig, theme),
// Underline cmd+clickable placeholder
goToDefinitionBundle(),
// Temporarily disabled due to Issue #1462
// goToDefinitionBundle(),
showPlaceholder
? Prec.highest(smartPlaceholderExtension("import marimo as mo"))
: enableAI
Expand Down

0 comments on commit 35a4a8c

Please sign in to comment.