How to disable uppercase validation in autocompletion of cygwin folder?

When navigating the file hierarchy under Cygwin, clicking on the tab after cd + a few characters replaces these several characters with the name of the directory whose name begins with the same characters, if such a directory is present in the current folder. However, the test seems to be case sensitive. How to deactivate case sensitivity?

+6
source share
1 answer

to try

  set completion-ignore-case On 

(This is for bash, which I'm sure cygwin is using.)

+12
source

Source: https://habr.com/ru/post/913480/


All Articles