Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Starks-Browning <starksb@ebi.ac.uk>2001-09-23 15:19:13 +0400
committerDavid Starks-Browning <starksb@ebi.ac.uk>2001-09-23 15:19:13 +0400
commit991f7832e6a032ebc0a7ff66597e9f31aabb7e5b (patch)
treeffc94f1826616052e8aa0a027fa1b2d47ca00c40 /winsup/doc
parentb66101cda73eaa559683bd448d4c64de621ff278 (diff)
expand entry "How can I get bash filename completion to be case insensitive?"
Diffstat (limited to 'winsup/doc')
-rw-r--r--winsup/doc/how-using.texinfo12
1 files changed, 11 insertions, 1 deletions
diff --git a/winsup/doc/how-using.texinfo b/winsup/doc/how-using.texinfo
index 7161d4865..bbde4de08 100644
--- a/winsup/doc/how-using.texinfo
+++ b/winsup/doc/how-using.texinfo
@@ -73,7 +73,17 @@ mounted as / in Cygwin.
@subsection How can I get bash filename completion to be case insensitive?
-"shopt -s nocaseglob" should do the trick.
+Add the following to your @code{~/.bashrc} file:
+
+@example
+ shopt -s nocaseglob
+@end example
+
+and add the following to your @code{~/.inputrc} file:
+
+@example
+ set completion-ignore-case on
+@end example
@subsection Can I use paths/filenames containing spaces in them?