aboutsummaryrefslogblamecommitdiff
path: root/readline/inputrc
blob: e423e0062c83757895701bb38c53ea388be0fd2f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                 
                   







                                                                    
                               



                                                          


                                         
                                                        




                                     


                                              


                                                                  
# Never ring any sort of bell during line reading
set bell-style none

# Ignore case when matching and completing paths
set completion-ignore-case On

# Treat underscores and hyphens the same way for completion purposes
set completion-map-case On

# Show me up to 5,000 completion items, don't be shy
set completion-query-items 5000

# Don't display control characters like ^C if I input them
set echo-control-characters Off

# Expand tilde to full path on completion
set expand-tilde On

# Add a trailing slash for completed symlink directories
set mark-symlinked-directories On

# Don't paginate possible completions
set page-completions Off

# Show multiple completions on first tab press
set show-all-if-ambiguous On

# Don't re-complete already completed text in the middle of a word
set skip-completed-text On