dots2/.antidote/functions/__antidote_indent

8 lines
206 B
Bash

#!/bin/zsh
### Indent strings
#function __antidote_indent {
emulate -L zsh; setopt local_options $_adote_funcopts
local -a lines=("${(@f)$(__antidote_collect_input "$@")}")
printf ' %s\n' $lines
#}