Hello, > But my goal is to have > $ cmd1 | st -e 'vipe' | cmd2 > ran non-interactively (i.e: in a shell script).
I use vipe a lot, but not this specific use case previously. Still, vipe supports the EDITOR variable, and this seems to work okay for me: ``` echo hello | EDITOR='st -e vim' vipe ``` No doubt this could be turned into a shell alias or so.