|
# -*- mode: snippet -*-
|
|
# name: guix-commit-message-update-package
|
|
# key: update
|
|
# condition: git-commit-mode
|
|
# --
|
|
gnu: $1: Update to $2.
|
|
|
|
* `(car (magit-staged-files))` ($1): Update to $2.$0
|
|
`(mapconcat (lambda (file) (concat "* " file)) (cdr (magit-staged-files)) "\n")` |