diff -upr fzf-0.31.0.orig/shell/key-bindings.bash fzf-0.31.0/shell/key-bindings.bash --- fzf-0.31.0.orig/shell/key-bindings.bash 2022-07-21 19:25:59.714997831 +0200 +++ fzf-0.31.0/shell/key-bindings.bash 2022-07-21 19:26:50.511874714 +0200 @@ -15,7 +15,7 @@ # ------------ __fzf_select__() { local cmd opts - cmd="${FZF_CTRL_T_COMMAND:-"command find -L . -mindepth 1 \\( -path '*/\\.*' -o -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \\) -prune \ + cmd="${FZF_CTRL_T_COMMAND:-"command find -L . -mindepth 1 \\( -path '*/\\.*' \\) -prune \ -o -type f -print \ -o -type d -print \ -o -type l -print 2> /dev/null | cut -b3-"}" diff -upr fzf-0.31.0.orig/shell/key-bindings.fish fzf-0.31.0/shell/key-bindings.fish --- fzf-0.31.0.orig/shell/key-bindings.fish 2022-07-21 19:25:59.714997831 +0200 +++ fzf-0.31.0/shell/key-bindings.fish 2022-07-21 19:26:04.411683860 +0200 @@ -25,7 +25,7 @@ function fzf_key_bindings # "-path \$dir'*/\\.*'" matches hidden files/folders inside $dir but not # $dir itself, even if hidden. test -n "$FZF_CTRL_T_COMMAND"; or set -l FZF_CTRL_T_COMMAND " - command find -L \$dir -mindepth 1 \\( -path \$dir'*/\\.*' -o -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' \\) -prune \ + command find -L \$dir -mindepth 1 \\( -path \$dir'*/\\.*' \\) -prune \ -o -type f -print \ -o -type d -print \ -o -type l -print 2> /dev/null | sed 's@^\./@@'" diff -upr fzf-0.31.0.orig/shell/key-bindings.zsh fzf-0.31.0/shell/key-bindings.zsh --- fzf-0.31.0.orig/shell/key-bindings.zsh 2022-07-21 19:25:59.714997831 +0200 +++ fzf-0.31.0/shell/key-bindings.zsh 2022-07-21 19:26:04.415017207 +0200 @@ -40,7 +40,7 @@ fi # CTRL-T - Paste the selected file path(s) into the command line __fsel() { - local cmd="${FZF_CTRL_T_COMMAND:-"command find -L . -mindepth 1 \\( -path '*/\\.*' -o -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \\) -prune \ + local cmd="${FZF_CTRL_T_COMMAND:-"command find -L . -mindepth 1 \\( -path '*/\\.*' \\) -prune \ -o -type f -print \ -o -type d -print \ -o -type l -print 2> /dev/null | cut -b3-"}" diff -upr fzf-0.31.0.orig/src/constants.go fzf-0.31.0/src/constants.go --- fzf-0.31.0.orig/src/constants.go 2022-07-21 19:25:59.718331178 +0200 +++ fzf-0.31.0/src/constants.go 2022-07-21 19:26:04.415017207 +0200 @@ -58,7 +58,7 @@ var defaultCommand string func init() { if !util.IsWindows() { - defaultCommand = `set -o pipefail; command find -L . -mindepth 1 \( -path '*/\.*' -o -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \) -prune -o -type f -print -o -type l -print 2> /dev/null | cut -b3-` + defaultCommand = `set -o pipefail; command find -L . -mindepth 1 \( -path '*/\.*' \) -prune -o -type f -print -o -type l -print 2> /dev/null | cut -b3-` } else if os.Getenv("TERM") == "cygwin" { defaultCommand = `sh -c "command find -L . -mindepth 1 -path '*/\.*' -prune -o -type f -print -o -type l -print 2> /dev/null | cut -b3-"` }