when I want to see the content of a dir I use ~/
+ Tab and it shows me
.bashrc.swp .gitconfig .local/ ...
Is there a way to make the results separated by newlines?
i.e.
.bashrc.swp
.gitconfig
.local/ ...
when I want to see the content of a dir I use ~/
+ Tab and it shows me
.bashrc.swp .gitconfig .local/ ...
Is there a way to make the results separated by newlines?
i.e.
.bashrc.swp
.gitconfig
.local/ ...
If you run this in the shell, it will affect the current session. If you want it to affect all sessions, put it at the end of your ~/.bashrc.
Or you can put this line in your ~/.inputrc:
Source and more details: Grisha Levit's answer on this Stack Overflow question