sotte / presenting.vim

A simple tool for presenting slides in vim based on text files.
MIT License
300 stars 50 forks source link

Code cleanup and minor improvements #28

Closed PhilRunninger closed 3 years ago

PhilRunninger commented 3 years ago

I noticed some irregularities when I used this on my new Windows machine, so I fixed them:

First were some font issues.

  1. Some of the table's line characters were not displaying as intended.
  2. The bullet character used for unordered lists was too small.
  3. After fixing the tables, I needed to use different characters to border the code blocks and quote blocks.

The next thing wasn't Windows-specific. I had noticed it before, but decided to put off fixing it until now. The tables are slightly off-center because of the markers used for syntax highlighting. They were appended before centering the text, instead of being prepended after centering. I fixed that, and used better markers for both tables and headings.

sotte commented 3 years ago

Hey @PhilRunninger, thanks again for your contribution!