vif IndexerTool.javaeffectively is the same command line as
vi ./java/org/crossref/qs/citationdocument/index/IndexerTool.java(for a current project.) The script is
#!/bin/bashYou can use wild cards too. For example, this will edit ALL your java files
[ -z "$1" ] || vi $(find . -name $1 -type f)
vif \*.java