I am trying to pass a parameter to my program and inside of one parameter I have xxxx!4xxx. When I press enter, tilix replaces me that part for tilix --preferences and put again the command to be executed.
How can I disable this feature?
Looks to me you're hitting "history expansion" of bash, use e.g. set +H in ~/.bashrc to disable the special treatment of !. It has nothing to do with Tilix.
Thanks @egmontkob.
Thanks @egmontkob ! Very helpful !
Edit: If anyone is facing this problem with oh-my-zsh, is just adding this line to the end of the config
unsetopt BANG_HIST
Most helpful comment
Looks to me you're hitting "history expansion" of bash, use e.g.
set +Hin~/.bashrcto disable the special treatment of!. It has nothing to do with Tilix.