Giter VIP home page Giter VIP logo

Comments (7)

jethrokuan avatar jethrokuan commented on June 12, 2024

This is likely because it is awk that is doing the printing. I'll look into it when I find the time.

from z.

externl avatar externl commented on June 12, 2024

WRT always printing to stderr. I haven't figured out the specifics of exactly why rupa/z does it, but I see where it comes from.

The main stderr redirect:
https://github.com/rupa/z/blob/master/z.sh#L150
https://github.com/fisherman/z/blob/master/functions/z.awk#L12

cmd = "sort -n >&2"
for( x in matches ) {
    if( matches[x] ) {
        printf "%-10s %s\n", matches[x], x | cmd
    }
}

Howerver, in rupa/z there is also:
https://github.com/rupa/z/blob/master/z.sh#L214

alias ${_Z_CMD:-z}='_z 2>&1'

Which redirects stderr into stdout.

It's not obvious to to me yet why rupa/z is designed this way.

EDIT: Looking at rupa/z history there is rupa/z@84ace8e

Maybe they're printed to stderr by mistake?

EDIT 2: It looks like a long time ago the idea was the lists would go to stderr. See https://github.com/rupa/z/blob/257f8400a79f9e82a952daf242fbb60483e42165/zz.sh

I think cmd = "sort -n >&2" should simply be changed to cmd = "sort -n". Lists will go to stdout now, common: .. will remain gong to stderr.

from z.

externl avatar externl commented on June 12, 2024

The other issue, where output of --list can't be captured is caused by https://github.com/fisherman/z/blob/master/functions/__z.fish#L59

 set target (command awk -v t=(date +%s) -v list="$list" -v typ="$typ" -v q="$arg" -F "|" -f $z_path/z.awk "$Z_DATA")

This ends up printing to stderr and and target is empty.

In fish only stdout is captured by subcommands (fish-shell/fish-shell#1035). I think the fix I proposed in the first comment will fix both issues.

EDIT: I can submit a PR if you think this is a sensible solution.

from z.

jethrokuan avatar jethrokuan commented on June 12, 2024

Your comment sounds like a reasonable solution. A PR would be much appreciated!

from z.

externl avatar externl commented on June 12, 2024

Looking at this line https://github.com/fisherman/z/blob/master/functions/__z.fish#L63

if test "$list" = "list"
    echo "$target" | tr ";" "\n" | sort -nr
    return 0
end

I don't how there would ever be any ;'s, and the target list should now already be sorted from the updated awk (https://github.com/fisherman/z/blob/master/functions/z.awk#L12). Also, this section sorts in reverse, where the awk list sort does not.

Currently, this section is skipped because target is empty. Can we remove this section now?

from z.

jethrokuan avatar jethrokuan commented on June 12, 2024

yes, there should probably be a test case for the list flag as well

from z.

externl avatar externl commented on June 12, 2024

PR submitted. I had to rework the main __z a little to better handle --list mode printing the common path to stderr.

from z.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.