We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ada493 commit ee434a6Copy full SHA for ee434a6
GUI/Sources/States/AppState/SelectionManager.swift
@@ -92,9 +92,10 @@ final class SelectionManager {
92
lastRecordedPathRight = path
93
}
94
95
- log.debug("[SelectionManager] history add \(panelSide): \(path)")
+ // Only setCurrent — don't add to history.
96
+ // History is populated in updatePath() when user actually enters a directory.
97
+ // Arrow-key navigation through files/dirs should NOT pollute history.
98
selectionsHistory.setCurrent(to: path)
- selectionsHistory.add(path)
99
100
101
/// Move selection up/down by step count
0 commit comments