Skip to content

Commit

Permalink
feat: enable scroll past last line in monaco (#846)
Browse files Browse the repository at this point in the history
set scroll past last line in monaco flag to true
  • Loading branch information
Kevin101Zhang authored Jul 2, 2024
1 parent 791afc2 commit a9c25c3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const ResizableEditor = ({
minimap: { enabled: false },
folding: false,
lineNumberMinChars: 3,
scrollBeyondLastLine: false,
scrollBeyondLastLine: true,
automaticLayout: true,
formatOnPaste: true,
definitionLinkOpensInPeek: true,
Expand Down Expand Up @@ -109,7 +109,7 @@ const ResizableEditor = ({
minimap: { enabled: false },
folding: false,
lineNumberMinChars: 3,
scrollBeyondLastLine: false,
scrollBeyondLastLine: true,
automaticLayout: true,
formatOnPaste: true,
definitionLinkOpensInPeek: true,
Expand Down

0 comments on commit a9c25c3

Please sign in to comment.