Konsole Tab Completion Lowercase To Uppercase

Hi all,

New to Manjaro KDE here. In the terminal, Konsole, and Yakuake, is there a way to change the tab completion options? For example, when one wants to change directory and the folder is in uppercase and one types in lowercase but changes to uppercase when the Tab key is pressed.

in ~/inputrc (create if you dont have) , put “set completion-ignore-case on”.

For example mine is :

# do not bell on tab-completion
#set bell-style none
set meta-flag on
set input-meta on
set convert-meta off
set output-meta on
$if mode=emacs
     "\e[A": history-search-backward
     "\e[B": history-search-forward
 # Colorize Completions
    # Color files by types
    set colored-stats On
   # Append char to indicate type
   set visible-stats On
   # Mark directories
   set mark-directories On
   # Mark symlinked directories
   set mark-symlinked-directories On
   # Color the common prefix
   set colored-completion-prefix On
   # Color the common prefix in menu-complete
   set menu-complete-display-prefix On
$endif
$if Bash
  TAB:menu-complete
  Space: magic-space
  #history like zsh
  set match-hidden-files off
  set completion-ignore-case on
  set completion-map-case on
  set history-preserve-point on
 #set mark-modified-lines on
  set visible-stats on
  set print-completions-horizontally on
  set show-all-if-ambiguous on
  set completion-query-items 0
 set page-completions off                                                                                                                                                                                                                                                                    
$endif
1 Like

I have access to that file. Thank you so much.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.