Sorry if this is a duplicate question: Since updating Rstudio, pressing the up arrow key while the cursor is in the console no longer returns the last run command. Sometimes it does, but most of the time it does not. Is there a way to revert to the previous behaviour? I have to keep pressing ctrl + up_key and its not efficient as the cursor goes back to the start of the previous command instead of the end etc quite literally cumbersome
sessioninfo::platform_info()
setting value
version R version 4.4.2 (2024-10-31 ucrt)
os Windows 11 x64 (build 22631)
system x86_64, mingw32
ui RStudio
language (EN)
collate English_United States.utf8
ctype C
tz America/Los_Angeles
date 2025-01-02
rstudio 2024.12.0+467 Kousa Dogwood (desktop)
Sorry if this is a duplicate question: Since updating Rstudio, pressing the up arrow key while the cursor is in the console no longer returns the last run command. Sometimes it does, but most of the time it does not. Is there a way to revert to the previous behaviour? I have to keep pressing ctrl + up_key and its not efficient as the cursor goes back to the start of the previous command instead of the end etc quite literally cumbersome
sessioninfo::platform_info()
setting value
version R version 4.4.2 (2024-10-31 ucrt)
os Windows 11 x64 (build 22631)
system x86_64, mingw32
ui RStudio
language (EN)
collate English_United States.utf8
ctype C
tz America/Los_Angeles
date 2025-01-02
rstudio 2024.12.0+467 Kousa Dogwood (desktop)
This is a known bug (see RStudio issue #7945) introduced in 2024.12.0 (Build 467) where the Up/Down arrows no longer reliably walk your console history. It was fixed in the very next point release (2024.12.1+563 “Kousa Dogwood”), so the simplest way to get the old behavior back is to upgrade to RStudio with minimum version of 2024.12.1+563.
I would recommend you to install latest version: https://dailies.rstudio.com/version/2025.04.0+491.pro2/
Once you’re on that release the Up/Down arrows in the console will once again recall the last-executed commands as before.
Temporary keyboard‐shortcut workaround:
If you can’t upgrade right away, you can rebind the Up/Down arrows to history navigation:
After that, plain Up/Down in the console will walk your history list again.
+563
version. I believe it should be fixed in that version – Onyambu Commented Mar 31 at 16:26