Saturday, March 26, 2011

Turning off case-sensitive tab completion in bash

/etc/inputrc deals with the mapping of the keyboard for certain situations.

Adding

set completion-ignore-case on

to the file turns off case-sensitivity in tab completion.


echo set completion-ignore-case on | sudo tee -a /etc/inputrc

No comments:

Post a Comment