Git Product home page Git Product logo

Comments (3)

rcaloras avatar rcaloras commented on July 24, 2024

Howdy,

The largest is it's more similar to zsh by providing function arrays to hook multiple functions for pre and post cmd execution (detailed in the readme!) and preserving things like the return value of the last command. In general though, it's more robust and actually packaged for reuse. There are a lot of small things and edge cases I covered like:

  • Multiple Inclusion
# Avoid duplicate inclusion
if [[ "$__bp_imported" == "defined" ]]; then
    return 0
fi
__bp_imported="defined"
  • Name spacing __bp
  • Error checking
 # Only execute this function if it actually exists.
        if [[ -n $(type -t $precmd_function) ]]; then
            __bp_set_ret_value $ret_value
            $precmd_function
        fi
  • Preserving the existing PROMPT_COMMAND
 # Take our existing prompt command and append a semicolon to it
    # if it doesn't already have one.
    local existing_prompt_command

    if [ -n "$PROMPT_COMMAND" ]; then
        existing_prompt_command=$(echo "$PROMPT_COMMAND" | sed '/; *$/!s/$/;/')
    else
        existing_prompt_command=""
    fi
  • There's a slew of others as well :)

I use this project in production for my current side project https://github.com/rcaloras/bashhub-client which I have a growing user base for. Glyph's code is a hack which I initially templated, but I didn't want to use his stuff in production. So I improved upon it and I'm fairly happy with the result so far.

Please try it out and let me know your feedback!

from bash-preexec.

rcaloras avatar rcaloras commented on July 24, 2024

Feel free to post any other questions. Thanks!

from bash-preexec.

exalted avatar exalted commented on July 24, 2024

@rcaloras sorry for being such a lazy *ss! Thanks for detailed explanation. I will see how can I make it work in my own use case and eventually report back if things make sense.

Cheers!

from bash-preexec.

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.