Skip to content

Commit

Permalink
turn on word wrap setting for cell output web view
Browse files Browse the repository at this point in the history
need to plumb these settings from user prefs
  • Loading branch information
Jake Donham committed Jun 25, 2024
1 parent f27290d commit 2b98f64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/vscode/src/cellOutputWebview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import { activate as activeMarkdownLanguageFeatures } from "../markdown-language
const rendererContext = {
workspace: { isTrusted: true },
settings: {
lineLimit: 100,
lineLimit: 500,
linkifyFilePaths: false,
minimalError: false,
outputScrolling: false,
outputWordWrap: false,
outputScrolling: true,
outputWordWrap: true,
},
onDidChangeSettings: (_cb: any) => ({ dispose: () => {} }),
} as any;
Expand Down

0 comments on commit 2b98f64

Please sign in to comment.