diff options
author | Sacha Chua <sacha@sachachua.com> | 2024-12-10 14:02:38 -0500 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2024-12-10 14:02:38 -0500 |
commit | bbabcae9d35e86991e3e62af17bb7cf7bd0cdbbe (patch) | |
tree | 77489c0dd8c8a4769708ebf66e8dc05a7fbd2c1c /2024 | |
parent | cb095d03bc4e27a38b72daa888bd93b68b47df08 (diff) | |
download | emacsconf-wiki-bbabcae9d35e86991e3e62af17bb7cf7bd0cdbbe.tar.xz emacsconf-wiki-bbabcae9d35e86991e3e62af17bb7cf7bd0cdbbe.zip |
Add cleaned up log from IRC to shell
Diffstat (limited to '')
-rw-r--r-- | 2024/talks/shell.md | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/2024/talks/shell.md b/2024/talks/shell.md index 69e8575a..8642efe1 100644 --- a/2024/talks/shell.md +++ b/2024/talks/shell.md @@ -28,6 +28,71 @@ See also these other talks by the same speaker: - [EmacsConf - 2024 - talks - Watering my (digital) plant with Emacs timers](https://emacsconf.org/2024/talks/water/) - [EmacsConf - 2023 - talks - Org-Mode Workflow: Informal Reference Tracking](https://emacsconf.org/2023/talks/ref/) +# Discussion + +- a nice interface for using process filters directly sounds really + useful, reminds me of emacs-piper + +- Uniline? + - lispmacs[work]: gs-101: yes +- feels like a museum to see someone using helm x) + - lispmacs[work]: heh heh + - lispmacs[work]: it was the first one I learned, now I'm hooked + - gs-101: First one I used was Ivy + Counsel, but then I moved to the Vertico + Consult stack as it was newer. +- lispmacs[work]: I haven't had any pressuring motivations to try anything else yet, but am open minded +- Is there a convenient way to share shell history between Eshell and the system shell (fish in my case)? + - lispmacs[work]: I know there is, but I don't use it. let me check the eshell modules list + - I use atuin and eshell-atuin to share shell history across programs, shells and machines. + - Ah yes, I gave atuin a try some time ago but I hate that it takes over full terminal for history. Not sure if that changed now though. + - lispmacs[work]: I'm not seeing something like that in the built-in Eshell Modules List unless eshell-hist does something like that + - i use my consult-shell-command package which is a small wrapper around async-shell-command that also suggests shell history :D https://codeberg.org/mekeor/consult-shell-command + - atuin is a CLI utility; eshell-atuin is a third party Emacs package. (https://github.com/SqrtMinusOne/eshell-atuin/) + - there is also https://github.com/svaante/recall by dape.el-developer with a similar goal +- I need to look more into Eshell. Just started using native Emacs on Windows and switched from cmd.exe in shell mode to PowerShell, but it would be nice to have a better shell that I can use both on my home machines and the two work machines that run GNU/Linux that would also work on my work Windows laptop. + - Yes, I saw that's one of the main use cases for ehsell. But on windows, for some reason, git provides a bash shell. https://gitforwindows.org/ + - Yes, I was thinking to maybe hook that into shell mode. The advantage of Eshell would be that I would not have to configure shell mode at all and just use the built in functionality of Emacs no matter what system I am on. +- Using buffers for input and output is such a killer feature + - Do you mean in eshell or more generally in Emacs + - both! But particularly in eshell + - How do you use a buffer as input in eshell? +- That looks really cool! +- wow! +- I don't see an eshell/@ command, I think I missed something + - lispmacs[work]: https://codeberg.org/infrared/emacsconf-2024/src/branch/main/shell-talk.el +- Oh, it's piping (buffer-string). I think this should be (buffer-substring-no-properties (point-min) (point-max)) Otherwise you'll pipe propertized text causing issues with shell commands. (Unless the eshell pipe somehow strips text properties, which I doubt.) + - lispmacs[work]: oh okay, I wonder if the eshell pipe gets rid of that on its own +- There's also https://github.com/szermatt/emacsclient-commands which has an epipe utility +- Input redirection from buffers in eshell would be great -- actually, input redirection at all would be great. + - isn't the "solution" to use cat input | ...? + - What is input here? +- what's the use case of #\<buffer NAME\> or #\<NAME\> notation in eshell, as described at (info "(eshell) Arguments")? + - It's useful for redirection. run-foo > #\<buffer NAME\> + - ah right, described at (info "(eshell) Pipelines") +- I just canβt get eshell to stick β¦ I keep running back to vterm with my tail between my legs + - eat fan here -- it doesn't require an additional external c library :D + - mekeor: I need to try it out, I read on its README that vterm is faster but I'm not sure if I actually need that speed. + - Eat seems to handle buffer resizes better +- lispmacs[work]: I think an important point is to just use Eshell where you find it useful - same with all the other Emacs tools. Of course, you should explore some of Eshell's Emacs/Elisp integration features +- The integrations with the rest of Emacs is probably what makes Eshell worth it once you get used to it. I am going to read up and try it out. +- Thanks + - einar_m: Thank you! :-) + - lounge-664: thanks chris good talk + - chum-cha: This was fantastic, thanks lispmacs[work]! + - mretka: M-x clap πππ + - dubs: Great talk + - [14:32:57] * gs-101 claps + - lispmacs[work]: thank you + - johnhamelink: Thank you :) + - jsiegel62: Thanks! + - lispmacs[work]: π + - karthik: Thank you + - mraabo: Very nice, thank you! + - lounge-267: ty, lispmacs. + - [14:33:42] * inkpotmonkey π + - oylenshpeegul: π + - ankit: Thank you, I've picked up a lot of things that I'll try to use in my workflow. + - einar_m: Thank you for the inspiration, lismacs! + [[!inline pages="internal(2024/info/shell-after)" raw="yes"]] [[!inline pages="internal(2024/info/shell-nav)" raw="yes"]] |