diff options
Diffstat (limited to 'plugin')
| -rw-r--r-- | plugin/trailing-white-space.vim | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/plugin/trailing-white-space.vim b/plugin/trailing-white-space.vim new file mode 100644 index 0000000..c0f2887 --- /dev/null +++ b/plugin/trailing-white-space.vim @@ -0,0 +1,41 @@ +hi ExtraWhitespaces ctermbg=238 guibg=#904030 +match ExtraWhitespaces /\s\+$/ + +" Show special chars +" set list +"set listchars=tab:›\ ,trail:ꞏ,extends:♯,eol:¬,nbsp:⍽ + + +" EOL alternatives: ⏎ / ⁊ / ¬ / ∵ / ∴ / ⊢ / ‹ / ≡ / + +" ␣ and ⍽ are different (' ̄□ ̄;)!! +" ⋅ and · are different ‼️ 🤯 +" The first is dot produt, the second is middle dot. +" And there are more! +" Here is ‧ hyphenation point. +" Here is ・katana middle dot. +" Here is ・ katana middle dot alternative. +" Here is ˑ IPA triangular (?!) middle dot. +" Here is ᛫ Runic single ponctuation. 🤣 +" Here is ∙ bullet operator. +" Here is • bullet. +" Here is ⸱ word separator middle dot. +" Here is ꞏ Latin letter dot (dot as a letter!). +" Here is ⸳ raised dot. +" Here is ⋅ dot operator. +" Here is · middle dot. +" Here is ● black cercle. +" Here is ⦁ z notation cercle. (https://en.wikipedia.org/wiki/Z_notation) +" Here is · greek ano teleia. +" Here is ∘ ring operator. +" Here is . full stop. +" +" Symbol that should be used as a tabulation: ␉ +" Symbol that should be used as tabulation key: ↹ +" Symbol that should be used as nbsp: ⍽ +" Symbol that should be used as carriage return: ␍ +" Symbol that should be used as new line:  +" Symbol that should be used as enter key: ⏎ / ⎆ / ⌤ / ⌤ / ↩ / ↵ +" +" Symbol that should be used as paragraph separator: ¶ (pied-de-mouche) +" Symbol that should be used as section separator: § (section sign) |