Skip to content

Commit 3e85e50

Browse files
committed
chore: reduce default search history to 25 only
1 parent 0819062 commit 3e85e50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/search/FindBar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ define(function (require, exports, module) {
5555
lastTypedText = "",
5656
lastTypedTextWasRegexp = false,
5757
lastClosedQuery = null;
58-
const MAX_HISTORY_RESULTS = 50;
58+
const MAX_HISTORY_RESULTS = 25;
5959
const PREF_MAX_HISTORY = "maxSearchHistory";
6060

6161
const INSTANT_SEARCH_INTERVAL_MS = 50;

0 commit comments

Comments
 (0)