I'm thinking this might be possible with a custom `tabs` list, and a variation of [this](https://unix.stackexchange.com/a/372792/110015): ``` tabs 5 echo "A very long line that I want to fold on the word boundary and indent as well" | fold -s -w 20 | sed -e "s|^|\t|g" ```
I'm thinking this might be possible with a custom
tabslist, and a variation of this: