Merge remote-tracking branch 'lenormf/fix-autowrap'
This commit is contained in:
commit
4d6af15734
|
@ -16,18 +16,20 @@ def -hidden autowrap-cursor %{ eval -save-regs '/"|^@m' %{
|
||||||
reg m "%val{selections_desc}"
|
reg m "%val{selections_desc}"
|
||||||
|
|
||||||
## if we're adding characters past the limit, just wrap them around
|
## if we're adding characters past the limit, just wrap them around
|
||||||
exec -draft "<a-h><a-k>.{%opt{autowrap_column}}\h*[^\s]*<ret>1s(\h+)[^\h]*\'<ret>c<ret><esc>"
|
exec -draft "<a-h><a-k>.{%opt{autowrap_column}}\h*[^\s]*<ret>1s(\h+)[^\h]*\'<ret>c<ret>"
|
||||||
} catch %{
|
} catch %{
|
||||||
## if we're adding characters in the middle of a sentence, use
|
## if we're adding characters in the middle of a sentence, use
|
||||||
## the `fmtcmd` command to wrap the entire paragraph
|
## the `fmtcmd` command to wrap the entire paragraph
|
||||||
%sh{
|
%sh{
|
||||||
if [[ "${kak_opt_autowrap_format_paragraph}" = true ]] \
|
if [ "${kak_opt_autowrap_format_paragraph}" = true ] \
|
||||||
&& [[ -n "${kak_opt_autowrap_fmtcmd}" ]]; then
|
&& [ -n "${kak_opt_autowrap_fmtcmd}" ]; then
|
||||||
format_cmd=$(printf %s "${kak_opt_autowrap_fmtcmd}" \
|
format_cmd=$(printf %s "${kak_opt_autowrap_fmtcmd}" \
|
||||||
| sed "s/%c/${kak_opt_autowrap_column}/g")
|
| sed "s/%c/${kak_opt_autowrap_column}/g")
|
||||||
printf %s "
|
printf %s "
|
||||||
|
eval -draft %{
|
||||||
exec '<a-]>p<a-x><a-j>|${format_cmd}<ret>'
|
exec '<a-]>p<a-x><a-j>|${format_cmd}<ret>'
|
||||||
try %{ exec s\h+$<ret> d }
|
try %{ exec s\h+$<ret> d }
|
||||||
|
}
|
||||||
select '${kak_reg_m}'
|
select '${kak_reg_m}'
|
||||||
"
|
"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue
Block a user