mirror of https://github.com/einverne/dotfiles.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
401 B
11 lines
401 B
5 years ago
|
#!/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)
|