mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2025-04-05 16:51:50 +00:00
[zsh] Prevent glob expansion in history widget (#3855)
This commit is contained in:
parent
dca2262fe6
commit
e023736c30
@ -107,7 +107,7 @@ fi
|
|||||||
# CTRL-R - Paste the selected command from history into the command line
|
# CTRL-R - Paste the selected command from history into the command line
|
||||||
fzf-history-widget() {
|
fzf-history-widget() {
|
||||||
local selected num
|
local selected num
|
||||||
setopt localoptions noglobsubst noposixbuiltins pipefail no_aliases 2> /dev/null
|
setopt localoptions noglobsubst noposixbuiltins pipefail no_aliases noglob 2> /dev/null
|
||||||
# Ensure the associative history array, which maps event numbers to the full
|
# Ensure the associative history array, which maps event numbers to the full
|
||||||
# history lines, is loaded, and that Perl is installed for multi-line output.
|
# history lines, is loaded, and that Perl is installed for multi-line output.
|
||||||
if zmodload -F zsh/parameter p:history 2>/dev/null && (( ${#commands[perl]} )); then
|
if zmodload -F zsh/parameter p:history 2>/dev/null && (( ${#commands[perl]} )); then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user