e7f8bdd548
Introduces two new shortcuts in the magit popup for pushing: * R: Push for review * S: Push to submit The existing "P" command remains, but has been renamed to "rubberstamp" and documented with a warning. To make this work across people's different setups, customisation options for TVL-specific code are being added. Change-Id: I48e75db55b5f793342fc898093629e437f58dcb2 Reviewed-on: https://cl.tvl.fyi/c/depot/+/503 Reviewed-by: glittershark <grfn@gws.fyi>
10 lines
150 B
Nix
10 lines
150 B
Nix
{ pkgs, ... }:
|
|
|
|
with pkgs.emacsPackages;
|
|
|
|
trivialBuild rec {
|
|
pname = "tvl";
|
|
version = "1.0";
|
|
src = ./tvl.el;
|
|
packageRequires = [ magit s ];
|
|
}
|