35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
# User input run commands for GNU Readline.
|
|
|
|
#
|
|
# Copyright (C) 2019, 2022 VHS <vhsdev@tutanota.com>
|
|
#
|
|
# This file is part of Archuro.
|
|
#
|
|
# After Dark is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published
|
|
# by the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# After Dark is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
# @see man bash for 'readline-command' and '.inputrc'
|
|
# @see https://hackaday.com/2018/01/19/linux-fu-custom-bash-command-completion/
|
|
# @see https://www.topbug.net/blog/2017/07/31/inputrc-for-humans/
|
|
|
|
# set match-hidden-files off
|
|
# set completion-ignore-case on
|
|
# set visible-stats on
|
|
# set show-all-if-ambiguous on
|
|
|
|
# History search (NOT WORKING)
|
|
# @see also stow/dot-zshrc
|
|
"\e[A": history-search-backward
|
|
"\e[B": history-search-forward
|