use strict;
sub synopsis { "Lists files with staged changes" }
sub list {
return [`git diff --color --stat --cached`];
}
1;