Skip to content

Commit

Permalink
Only clear screen
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremypw committed Sep 2, 2024
1 parent f673461 commit e75de70
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Widgets/TerminalWidget.vala
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,9 @@ namespace Terminal {
}

private void action_clear_screen () {
run_program ("clear", null);
debug ("Clear screen only");
// Should we clear scrollback too?
run_program ("clear -x", null);
}

private void action_reset () {
Expand Down

0 comments on commit e75de70

Please sign in to comment.