Anyone know if James Reeves has a sponsorship way somewhere? I can’t see anything on his github https://github.com/weavejester
I believe he's spoken publicly on a podcast about his consulting funding his open source.
any bash gurus here? I had a line in my old .bashrc
that let me enter <Ctrl>-g
as basically an alias for cd ..
. But alias
doesn't work for it and I can't remember for the life of me what that line was. It might have been a function. Any help? I miss it (too much probably)
trap on_sigint SIGINT
on_sigint() { echo "caught"; }
something like thisyou can do this from ~/.inputrc
"\C-g": "cd ..\n"
That'll work for me! Thank you. I think @delaguardo is on the right track but I still haven't been able to figure it out.
I just had found it on http://lobste.rs a few weeks ago or something and quickly grew used to it.