更改 Visual Studio Code 内置终端中显示的行数

问题描述 投票:0回答:4

我正在使用集成在 Visual Studio Code 中的终端。当我向上滚动时,它会显示前面的行,但它们对我来说还不够。我需要查看更多线路。

如何增加 VS Code 中终端显示的总行数?

terminal visual-studio-code
4个回答
237
投票

有一种方法可以改变你必须去的行数:

文件-->首选项-->配置

然后,它将打开文件

settings.json
,您应该搜索
Integrated terminal
,然后搜索
terminal.integrated.scrollback
,将这句话复制并粘贴到您的用户配置中,如下所示:

enter image description here

根据需要更改行数。就是这样。


65
投票
  1. 前往
    File -> Preferences -> Settings

terminal_limit_exceaded_menu

  1. 搜索
    terminal
    并打开
    settings.json

terminal_limit_exceaded

  1. 添加新行至

    settings.json

      "terminal.integrated.scrollback": 100000000,
    

terminal


40
投票

Visual Studio Code 版本 1.47.3,您可以在文件 --> 首选项 --> 设置中执行此操作,然后选择功能/终端菜单。找到“Integrated:Scrollback”属性并更改它。保存设置。

enter image description here


19
投票

以防万一最快的方法:

  1. 点击 Ctrl + ,(或在 Mac 上按 Cmd + ,
  2. 搜索
    terminal.integrated.scrollback
  3. 1000
    更新为更大的内容,例如
    1000000
    (请参阅下面的警告)

enter image description here

警告:

一年后,我注意到调整 VScode 左面板宽度会使编辑器冻结几秒钟。我把这个数字从

100000000
降低到
1000000
。如果您发现 VSCode 滞后或冻结,请在此处选择较小的数字。

© www.soinside.com 2019 - 2024. All rights reserved.