Skip to content
  • Need to add --count=0 to the platform command, otherwise it truncates to height of terminal, so it means I only get to choose from 5 options when in VS Code split terminal 😞
    E.g. when I run ulitool on a "short" terminal window it only gives me 10/10 options to choose from, but with --count=0 added it gives me 56/56 (until I filter of course).

    So change:

    PSH_PROJECT=$(platform project:list --no-header --columns=id,title --format=tsv | fzf --reverse --height=50% --header='id              Project' -1)

    To

    PSH_PROJECT=$(platform project:list --no-header --columns=id,title --format=tsv --count=0 | fzf --reverse --height=50% --header='id              Project' -1)

    Same thing for redeploy tool

  • @waako done!

0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment