off-topic

https://github.com/clojurians/community-development/blob/master/Code-of-Conduct.md Clojurians Slack Community Code of Conduct. Searchable message archives are at https://clojurians-log.clojureverse.org/
orestis 2020-12-21T12:25:14.239600Z

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

dominicm 2020-12-21T12:38:02.239900Z

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

Chase 2020-12-21T15:46:12.241400Z

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)

2020-12-21T15:48:25.241500Z

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

😕 1
Jan K 2020-12-21T17:41:47.242300Z

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

Chase 2020-12-21T17:43:32.242500Z

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.

Chase 2020-12-21T17:43:56.242700Z

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