Skip to content

Instantly share code, notes, and snippets.

@longdog
Created August 31, 2023 08:00
Show Gist options
  • Save longdog/51f51133a76961204bb377ddd2c0e34c to your computer and use it in GitHub Desktop.
Save longdog/51f51133a76961204bb377ddd2c0e34c to your computer and use it in GitHub Desktop.
helix zellij repl
[keys.normal." "]
z = ":pipe-to repl.sh"
#!/usr/bin/env bash
set -eou pipefail
if [ $# -eq 0 ]; then
read -r COMMAND
else
COMMAND=$1
fi
zellij action focus-next-pane
zellij action write-chars "${COMMAND}"
zellij action write 13
zellij action focus-next-pane
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment