fpf-cli 1.6.54 → 1.6.55

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.
Binary file
Binary file
Binary file
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.54"
85
+ SCRIPT_VERSION="1.6.55"
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=()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fpf-cli",
3
- "version": "1.6.54",
3
+ "version": "1.6.55",
4
4
  "description": "Cross-platform fuzzy package finder powered by fzf",
5
5
  "bin": {
6
6
  "fpf": "fpf"