LoginSignup
0
0

More than 3 years have passed since last update.

[IntelliJ IDE] Terminalのスクロールバッファを増やす

Posted at

設定の変更方法を探すのにやや時間を要したのでメモします。
デフォルトは1000行でしたが、私には少し足りませんでした。

スクロールバッファを増やすとパフォーマンスに影響を与える可能性がありますので、ご注意ください。

検証環境 :PyCharm 2019.2

手順

下記設定をした後に再起動して反映されました。

1. Cmd+shift+A
2. Type 'registry' in the search box
3. Click 'Registry...' to view registry details
4. Scroll down to 'terminal.buffer.max.lines.count' (or it may be near the top if it has been updated previously)
5. Click on the value in the Value column, enter new value (eg. '5000')
6. Click 'Close'

手順はサポートページから取得しました。

設定後、再確認するとこんな感じになります。
スクリーンショット 2019-11-21 12.10.05.png

設定反映の確認

10000行に設定して、10000行以上遡れるかを確認しました。

COUNT=0
while [ $COUNT -lt 1100 ]; do
    echo $COUNT
    COUNT=`expr $COUNT + 1`
done

ここからスクロールして遡る
スクリーンショット 2019-11-21 12.07.43.png

ここでスクロールの限界を迎えました。
スクリーンショット 2019-11-21 12.07.57.png

大体合っていので、OKとします :ok_hand:

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0