[IntelliJ IDE] Terminalのスクロールバッファを増やす
設定の変更方法を探すのにやや時間を要したのでメモします。
デフォルトは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'
手順はサポートページから取得しました。
設定反映の確認
10000行に設定して、10000行以上遡れるかを確認しました。
COUNT=0
while [ $COUNT -lt 1100 ]; do
echo $COUNT
COUNT=`expr $COUNT + 1`
done
ここからスクロールして遡る
↓
ここでスクロールの限界を迎えました。
大体合っていので、OKとします
Author And Source
この問題について([IntelliJ IDE] Terminalのスクロールバッファを増やす), 我々は、より多くの情報をここで見つけました https://qiita.com/nassy20/items/0bcba798ef2a7a5bd7a8著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .