my personal dotfiles managed by dotbot, zinit
 
 
 
 
 
 

10 lines
401 B

#!/bin/sh
#
# Open new, unstaged files in your $EDITOR.
#
# This is nice to have when you run a command line generator which generates a
# file or three in your working directory, and you know you want to immediately
# edit them in your editor next. Why waste time clicking around like some sort
# of plebian when you can just run another command?
$EDITOR $(git ls-files --others --exclude-standard)