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

11 lines
194 B
Nix
Raw Normal View History

2025-05-04 02:47:36 +02:00
{
pkgs,
emacsPackage,
...
}:
pkgs.writeShellScriptBin "launch-with-emacsclient" ''
filename="$1"
line="$2"
column="$3"
${emacsPackage}/bin/emacsclient +$line:$column "$filename"''