Fork me on GitHub
#off-topic
<
2020-12-21
>
orestis12:12:14

Anyone know if James Reeves has a sponsorship way somewhere? I can’t see anything on his github https://github.com/weavejester

dominicm12:12:02

I believe he's spoken publicly on a podcast about his consulting funding his open source.

Vincent Cantin07:12:55

@U7PBP4UVA the best would be to contact him via his website.

Chase15:12:12

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)

delaguardo15:12:25

trap on_sigint SIGINT
on_sigint() { echo "caught"; }
something like this

😕 3
Jan K17:12:47

you can do this from ~/.inputrc "\C-g": "cd ..\n"

Chase17:12:32

That'll work for me! Thank you. I think @U04V4KLKC is on the right track but I still haven't been able to figure it out.

Chase17:12:56

I just had found it on http://lobste.rs a few weeks ago or something and quickly grew used to it.