diff --git a/.config/mc/ini b/.config/mc/ini index b3072fb..22168d9 100755 --- a/.config/mc/ini +++ b/.config/mc/ini @@ -163,7 +163,7 @@ panel_scroll_center=false simple_swap=false [Panelize] +Modified git files=git ls-files --modified +Find rejects after patching=find . -name \\*.rej -print Find *.orig after patching=find . -name \\*.orig -print Find SUID and SGID programs=find . \\( \\( -perm -04000 -a -perm /011 \\) -o \\( -perm -02000 -a -perm /01 \\) \\) -print -Find rejects after patching=find . -name \\*.rej -print -Modified git files=git ls-files --modified diff --git a/.inputrc b/.inputrc index fceab0d..e44bad5 100755 --- a/.inputrc +++ b/.inputrc @@ -1,36 +1,36 @@ -# none, visible or audible -set bell-style visible - -# Ask before displaying >40 items -set completion-query-items 40 -set completion-ignore-case on +# .inputrc +# https://linux.die.net/man/3/readline # enable/disable 8bit input -# https://linux.die.net/man/3/readline #set input-meta off #set convert-meta on #set output-meta off -# Some common Readline config settings. -set colored-stats on # Turn on completion colors. -set colored-completion-prefix on # Color the typed completion prefix. +# none, visible or audible +set bell-style visible + +# Readline config settings +set completion-query-items 40 # Ask before displaying >40 items +set completion-ignore-case on +set colored-stats on # Turn on completion colors. +set colored-completion-prefix on # Color the typed completion prefix. # Keybinds -"\e[1~": beginning-of-line # Home -"\e[4~": end-of-line # End -"\e[5~": beginning-of-history # PageUp -"\e[6~": end-of-history # PageDown -"\e[2~": overwrite-mode # Insert -"\eOC": forward-word # Ctrl-Right -"\eOD": backward-word # Ctrl-Left -"\e[3;5~": kill-word # Ctrl-Del - delete word to the right -"\e[3;6~": kill-line # Ctrl-Shift-Del - delete to end of the line +"\e[1~": beginning-of-line # Home +"\e[4~": end-of-line # End +"\e[5~": beginning-of-history # PageUp +"\e[6~": end-of-history # PageDown +"\e[2~": overwrite-mode # Insert +"\eOC": forward-word # Ctrl-Right +"\eOD": backward-word # Ctrl-Left +"\e[3;5~": kill-word # Ctrl-Del - delete word to the right +"\e[3;6~": kill-line # Ctrl-Shift-Del - delete to end of the line -"\e[A": history-search-backward # ArrowUp -"\e[B": history-search-forward # ArrowDown +"\e[A": history-search-backward # ArrowUp +"\e[B": history-search-forward # ArrowDown -"\e[1;3A": "cd ..\n" # Alt-UpArrow for 'cd ..' -"\e[1;3B": "cd -\n" # Alt-ArrowDown for previous dir +"\e[1;3A": "cd ..\n" # Alt-UpArrow for 'cd ..' +"\e[1;3B": "cd -\n" # Alt-ArrowDown for previous dir # Ctrl-K - clears the input line regardless of cursor pos -"\C-k": "\C-e\C-u" +C-k: "\C-e\C-u"