fpf-cli 1.6.54 → 1.6.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bin/fpf-go-darwin-amd64 +0 -0
- package/bin/fpf-go-darwin-arm64 +0 -0
- package/bin/fpf-go-linux-amd64 +0 -0
- package/bin/fpf-go-linux-arm64 +0 -0
- package/bin/fpf-go-windows-amd64.exe +0 -0
- package/bin/fpf-go-windows-arm64.exe +0 -0
- package/fpf +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# fpf-cli (`fpf`) 📦
|
|
2
2
|
|
|
3
|
-
Simple fuzzy package finder for people who live in the terminal.
|
|
3
|
+
Simple fuzzy package finder for people who live in the terminal. *half the time it is working, sorry.
|
|
4
4
|
|
|
5
5
|
Search packages with `fzf`, preview details, and install/remove/update from one place.
|
|
6
6
|
|
package/bin/fpf-go-darwin-amd64
CHANGED
|
Binary file
|
package/bin/fpf-go-darwin-arm64
CHANGED
|
Binary file
|
package/bin/fpf-go-linux-amd64
CHANGED
|
Binary file
|
package/bin/fpf-go-linux-arm64
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/fpf
CHANGED
|
@@ -82,7 +82,7 @@ resolve_script_path() {
|
|
|
82
82
|
try_exec_packaged_go_binary "$@"
|
|
83
83
|
|
|
84
84
|
SCRIPT_NAME="fpf"
|
|
85
|
-
SCRIPT_VERSION="1.6.
|
|
85
|
+
SCRIPT_VERSION="1.6.56"
|
|
86
86
|
TMP_ROOT="${TMPDIR:-/tmp}/fpf"
|
|
87
87
|
SESSION_TMP_ROOT=""
|
|
88
88
|
HELP_FILE=""
|
|
@@ -3337,8 +3337,16 @@ collect_search_display_rows() {
|
|
|
3337
3337
|
local output_file="$2"
|
|
3338
3338
|
shift 2
|
|
3339
3339
|
local managers=("$@")
|
|
3340
|
+
local managers_csv=""
|
|
3340
3341
|
local query_limit="${FPF_QUERY_RESULT_LIMIT:-0}"
|
|
3341
3342
|
|
|
3343
|
+
if [[ "${FPF_USE_GO_DISPLAY_PIPELINE:-0}" == "1" && -n "${FPF_SELF_PATH:-}" && -x "${FPF_SELF_PATH}" ]]; then
|
|
3344
|
+
managers_csv="$(IFS=','; printf '%s' "${managers[*]-}")"
|
|
3345
|
+
if "${FPF_SELF_PATH}" --go-build-display --go-query "${query}" --go-output "${output_file}" --go-managers "${managers_csv}"; then
|
|
3346
|
+
return 0
|
|
3347
|
+
fi
|
|
3348
|
+
fi
|
|
3349
|
+
|
|
3342
3350
|
: >"${output_file}"
|
|
3343
3351
|
|
|
3344
3352
|
local part_files=()
|