mirror of
https://github.com/inkarkat/vim-ShowTrailingWhitespace.git
synced 2026-05-26 11:24:17 +02:00
14 lines
469 B
VimL
14 lines
469 B
VimL
" markdown_ShowTrailingWhitespace.vim: Whitespace exceptions for the "markdown" filetype.
|
|
"
|
|
" DEPENDENCIES:
|
|
"
|
|
" Copyright: (C) 2013-2020 Ingo Karkat
|
|
" The VIM LICENSE applies to this script; see ':help copyright'.
|
|
"
|
|
" Maintainer: Ingo Karkat <ingo@karkat.de>
|
|
|
|
" End a line with two (or more) spaces to add a <br/> linebreak.
|
|
call ShowTrailingWhitespace#SetLocalExtraPattern('\%( \@<! \|\t\s*\| \t\+\)$\&')
|
|
|
|
" vim: set ts=8 sts=4 sw=4 noexpandtab ff=unix fdm=syntax :
|