How can one append something to the default inputrc
? This trick
etc."inputrc".text = lib.mkDefault (
lib.mkAfter ''
# Prefix history
"\e[A": history-search-backward
"\e[B": history-search-forward
"\eB": vi-bWord
"\eF": vi-fWord
''
);
does NOT work since the text
is null and the actual default passed to source
. I wouldn’t mind using the source
if I could somehow pass there a custom merge function.