I use PowerShell's PSReadline-based tab completion and I'm looking to implement the following custom completion behavior:
In a folder I have
File1.java
File1.class
File2.java
File2.class
If I use tab after java
I got a list of the files:
java .\File
File1.java
File1.class
File2.java
File2.class
But I want to use a shortcut so I can scroll through only the .java-files but without the extension shown. I also want to get rid of ".\" in the name.
So if I write java
and use tab I want to have
java File1
And next tab gives
java File2
And so forth (with tab or some other key).
I also wondering, before compling the java-files I have the folder
File1.java
File2.java
I now want to write javac and use tab so I get
javac File1.java
And tab again gives
javac File2.java
And so forth.
Is this possible?