|
|
|
|
|
by yeti-sh
960 days ago
|
|
That's right; Google also published a similar package named `fire`, I used it a lot. > just `python your_file.py` That's actually one of the points. j lint
is shorter than python scripts.py lint
and the letter `j` is what the index finger of your right hand is pointing to on the keyboard. There is usually a tactile bump on that key. It is something you can type very quickly. You can also install shell completion to improve the experience further.Ergonomics matters. |
|
I'll agree this is some improvement in ergonomics if the executable supports tab completion.
With makefile + argh I can do this: put the script as a dependency of data file, and rebuild it if code changes.
With your package, this becomes harder -- the file name and command name now are separated and must be checked for being in sync.So, the package adds some features, but does it at some cost of other ways of interaction.