aboutsummaryrefslogtreecommitdiff
path: root/tests/test-system-utils-commands.el
Commit message (Collapse)AuthorAgeFilesLines
* chore(ibuffer): put diff on d and delete on DCraig Jennings47 hours1-0/+9
| | | | In the ibuffer buffer list, d now diffs the buffer at point against its saved file (ibuffer-diff-with-file, was on =) and D marks it for deletion (was on d; x still executes the marks).
* test(system-utils): cover open-file-with-command, server-shutdownCraig Jennings2026-05-141-0/+94
Sibling `test-system-utils-eval-buffer.el` covered the eval-buffer wrapper. This batch covers: - `cj/open-file-with-command`: a launcher routes through `call-process`; a non-launcher routes through `start-process-shell-command` into a dedicated `*Open with <cmd>: <file>*` buffer; a missing file signals an error. - `cj/server-shutdown`: saves buffers and calls `kill-emacs`. Process and prompt primitives are stubbed.