Variable: projectile-command-history-ignore-duplicates
projectile-command-history-ignore-duplicates is a customizable
variable defined in projectile.el.
Value
t
Documentation
Controls when inputs are added to projectile's command history.
A value of t means consecutive duplicates are ignored.
A value of erase means only the last duplicate is kept.
A value of nil means nothing is ignored.
This variable was added, or its default value changed, in projectile version 2.9.0.
Aliases
projectile-cmd-hist-ignoredups (obsolete since 3.4.0)
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-command-history-ignore-duplicates t
"Controls when inputs are added to projectile's command history.
A value of t means consecutive duplicates are ignored.
A value of `erase' means only the last duplicate is kept.
A value of nil means nothing is ignored."
:group 'projectile
:type '(choice (const :tag "Don't ignore anything" nil)
(const :tag "Ignore consecutive duplicates" t)
(const :tag "Only keep last duplicate" erase))
:package-version '(projectile . "2.9.0"))