nix-config/users/modules/cli/scripts/launch-with-emacsclient.nix

11 lines
213 B
Nix
Raw Permalink Normal View History

2025-05-04 02:47:36 +02:00
{
pkgs,
2025-07-27 22:50:25 +02:00
config,
2025-05-04 02:47:36 +02:00
...
}:
pkgs.writeShellScriptBin "launch-with-emacsclient" ''
filename="$1"
line="$2"
column="$3"
2025-07-27 22:50:25 +02:00
${config.home.dev.editors.emacs.package}/bin/emacsclient +$line:$column "$filename"''