GithubHelp home page GithubHelp logo

Comments (3)

olets avatar olets commented on July 29, 2024 1

Thanks for the idea! At this time I'm not comfortable supporting evaluation in that way. Seems like a vector for easy abuse.

If you just need the result, you can use the default expand-and-accept behavior

abbr -g gr="git rev-parse --show-cdup"
gr

If you need to use the result in a command and don't care about seeing the full text of the command, that's a good use case for an alias

% alias -g gr="git rev-parse --show-cdup"
% cd my-repo/dir
% gr
../
% cat $(gr)README.md
# snip
% cd $(gr)

I see the limitation if you do want to see the full command and it needs to not be followed by a space, for example in the above cat $(git rev-parse --show-cdup)README.md example. Currently you can

abbr -g gr='$(git rev-parse --show-cdup)'
gr<Space><Delete>README.md<Enter>

which is okay but it'd be nice to document a way of expanding in place, without having to delete a space:

abbr -g gr='$(git rev-parse --show-cdup)'
gr<some binding>README.md<Enter>

I'll plan on adding that feature.

p.s. nice GH landing page!

from zsh-abbr.

yutkat avatar yutkat commented on July 29, 2024

I'll try to workaround it for now.

Thank you for your reply 😉

from zsh-abbr.

olets avatar olets commented on July 29, 2024

Added some friendlier widget names, see https://github.com/olets/zsh-abbr#bindings

Closing but let me know if that doesn't meet your needs

from zsh-abbr.

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.