sotte / presenting.vim

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

Allow multiple presentations #25

Closed PhilRunninger closed 3 years ago

PhilRunninger commented 3 years ago

This pull request allows the user to run multiple presentations at the same time, in separate tabs, of course. The most significant change here is the move of variables from script level (s:....) scope to buffer level (b:...). This keeps all relevant data contained to the buffer in which the show is being presented, and is a good move whether or not a user presents multiple slide shows.

The ability to specify custom slide separators remains unchanged.

sotte commented 3 years ago

Thank you @PhilRunninger!