Reputation: 16164
I am using iTerm 2 for Mac
How can I disable this "history pop up window"?
Upvotes: 3
Views: 1379
Reputation: 223
You can enable/disable the pop-up (in a recent version, anyway) with View > Auto Command Completion.
Upvotes: 3
Reputation: 16164
This history popup window is enabled when you have "iTerm2 Shell Integration" installed: https://iterm2.com/documentation-shell-integration.html
More detailed: it's the "View command history"-feature:
It can be seen and searched in the toolbelt or quickly accessed in a popup window.
You can either:
ITERM_SHELL_INTEGRATION_INSTALLED=Yes
in $HOME/.iterm2_shell_integration.zsh
or
[[ -e "$HOME/.iterm2_shell_integration.zsh" ]] && source "$HOME/.iterm2_shell_integration.zsh"
from your $HOME/.zshrc
Upvotes: 2