Nathan Lilienthal

Results 241 comments of Nathan Lilienthal

> alacritty has support for iTerm2 image protocol. Did anyone ever settle on a means for the application to detect that without doing a terminal ID query and maintaining their...

I wonder sometimes how much a `ScrollToLastCommand` action would help with a lot of my long scrolling TBH.

@chrisduerr yea, I guess so... Then I guess that's a shell feature I'd want. Though now we need a way to allow a shell to scroll the history.

There are two parts of a scrollbar I would consider to be fundamental. 1. The bar itself 2. The gutter it resides within We'd need the bar to only appear...

I think the visual indication of where you are in the scrolling is actually really important, however it shouldn't clog up my screen when I'm not using it. I also...

FWIW on my system (Arch, X11, i3, `master`) I cannot reproduce this. Pressing Shift while holding j correctly starts inserting `J` characters.

@chrisbouchard your example works perfectly for me: ```sh alacritty -e zsh -c 'cd ~ && pwd && zsh -i' ``` I end up in `zsh` with my home directory printed...

Just to add to this, and possibly this clears things up @chrisbouchard? We can use [`$@`](https://www.tldp.org/LDP/abs/html/internalvariables.html#APPREF) to print the command arguments as is (periods added to help see variable expansion)....

@chrisbouchard here's what Alacritty is seeing with and without two layers of quotes, similar to your original example: **Only single quotes `alacritty -e wsl bash -c 'echo hit; sleep 3'`:**...

@chrisbouchard yea sorry, I didn't realize the issue until I tried it out on Windows for myself. FWIW, here's where the code lives: https://github.com/alacritty/alacritty/blob/13eb50de799c4c6f7ebed1a7fa1ab25b378580bb/alacritty_terminal/src/tty/windows/mod.rs#L305-L313