Skip to content

Commit

Permalink
chore: reduce default search history to 25 only
Browse files Browse the repository at this point in the history
  • Loading branch information
abose committed Dec 19, 2024
1 parent 549dc01 commit dc0607d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search/FindBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ define(function (require, exports, module) {
lastTypedText = "",
lastTypedTextWasRegexp = false,
lastClosedQuery = null;
const MAX_HISTORY_RESULTS = 50;
const MAX_HISTORY_RESULTS = 25;
const PREF_MAX_HISTORY = "maxSearchHistory";

const INSTANT_SEARCH_INTERVAL_MS = 50;
Expand Down

0 comments on commit dc0607d

Please sign in to comment.