My bash does not know the letter p. zsh does though.
When I type a p in bash, it simply ignores it, and even pasting in text that contains a p will result in no p in the pasted text.
This behavior is the same across terminals (I tried, urxvt, st and tty)
I tried commenting out everything in my ~/.profile, ~/.bash_profile and ~/.bashrc, the problem still persists. Using root though, everything is fine. My /root/.profile, /root/.bash_profile and /root/.bashrc are symlinked to the files in my home directory. So the problem can't originate there, but it's got to be something that is different for root and my user.
I use a custom keyboard layout, but when I switch to standard US keyboard layout, the problem still persists as well.
Just to rule this out as well: I do not use gnome.
Where else can I look?
.inputrcin effect? – choroba Jun 07 '19 at 09:07line 51
printf '\033[?1h\033=' >/dev/tty` I'm using urxvt again anyways, so it doesn't matter
– maddingl Jun 07 '19 at 09:12printfcommand doesn't belong in~/.inputrcwhich doesn't understand commands such as that. It should go in~/.bashrcor similar shell startup file. – Dennis Williamson Jun 08 '19 at 00:07