From 6ed0b598cd55a602bd90a9dd651ae84e53877e8d Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 1 Apr 2014 20:00:52 -0700 Subject: [PATCH] .inputrc: Disable the system bell (\a) for the Readline library I enable the system bell (xset b) to get IRC notifications from irssi, but I don't want Readline beeping at me if I try and move outside the line ;). For docs on other available settings, see [1]. [1]: https://www.gnu.org/software/bash/manual/html_node/Readline-Init-File-Syntax.html --- src/.inputrc | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/.inputrc diff --git a/src/.inputrc b/src/.inputrc new file mode 100644 index 0000000..2c0fc3c --- /dev/null +++ b/src/.inputrc @@ -0,0 +1,4 @@ +# Configure the Readline library + +# set bell (\a) style (audible, visible, none) +set bell-style none -- 2.26.2