Files
nix-config/users/scripts/launch-with-emacsclient.nix
2025-05-04 03:25:42 +02:00

11 lines
194 B
Nix

{
pkgs,
emacsPackage,
...
}:
pkgs.writeShellScriptBin "launch-with-emacsclient" ''
filename="$1"
line="$2"
column="$3"
${emacsPackage}/bin/emacsclient +$line:$column "$filename"''