Dato che ero curioso di sapere come avrebbe funzionato, ho hackerato qualcosa insieme in quel tipo di opere.
Come menzionato nei commenti sulla risposta precedente, l'unico modo per farlo è riempire le aree di spazi; che è esattamente quello che facciamo; prima di scrivere, rimuoviamo questi spazi, quindi non dovresti disturbare nessun altro.
Nota che questo esempio è molto specifico per il tipo di file markdown!
Effetti collaterali :
- La copia del testo copierà anche molti spazi
- L'uso $e Endnon funziona più come previsto (va alla colonna 80), e tasti come
je kanche comportarsi diversamente.
- Lo sfondo non viene visualizzato quando
'list'
è abilitato
- Le righe completamente vuote non funzionano, è necessario aggiungere manualmente una scheda o 4 spazi
- ... Forse di più?
Innanzitutto, devi aggiungere questo al tuo ~/.vim/after/syntax/markdown.vim
:
syn clear markdownCodeBlock
syn region markdownCodeBlock start=" \|\t" end="$"
hi def markdownCodeBlock ctermbg=230 guibg=lightyellow
Puoi regolare i colori a tuo piacimento, ovviamente ;-)
Quindi, aggiungi questo al tuo vimrc:
fun! MarkdownBlocks()
fun! s:fill(line)
" Remove all trailing whitespace
let l:line = substitute(a:line, " *$", "", "")
" Add trailing whitespace up to 'textwidth' length
return l:line . repeat(' ', (&tw > 0 ? &tw : 80) - strdisplaywidth(l:line))
endfun
" Get all lines in a list
let l:lines = getline(1, line('$'))
" Map s:fill() to the lines that are a code block
call map(l:lines, 'v:val[0] == "\t" || v:val[:3] == " " ? s:fill(v:val) : v:val')
" Reset the buffer to the lines
call setline(1, l:lines)
endfun
" Remove all the trailing spaces
fun! MarkdownBlocksClean()
let l:save_cursor = getpos(".")
silent %s/^\( \|\t\)\(.\{-}\)\( *\)$/\1\2/e
call setpos('.', l:save_cursor)
endfun
au BufWritePre *.markdown call MarkdownBlocksClean()
" Set spaces on loading the file, leaving insert mode, and after writing it
au FileType markdown call MarkdownBlocks()
au InsertLeave *.markdown call MarkdownBlocks()
au BufWritePost *.markdown call MarkdownBlocks()
Non ho intenzione di spiegare il codice riga per riga, i commenti dovrebbero chiarire l'essenza generale ;-)