How can I search and replace horizontal tabs in nano? I've been trying to use [\t]
in regex mode, but this only matches every occurrence of the character t
.
I've just been using sed 's/\t//g' file
, which works fine, but I would still be interested in a nano
solution.
\t
metacharacter. – jesse_b Jul 26 '18 at 21:11