Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: allow jumping back to column in column layout #396

Merged
merged 1 commit into from
Nov 16, 2024

Conversation

mfontanini
Copy link
Owner

Before this change you could create a column layout, jump to column X, then Y, then go back to X and it worked but it would start over at the very top row of column X. This meant it would overwrite content you wrote in that column the last time you entered it.

This changes that behavior so it behaves as you'd expect: re-entering a column will cause the cursor to continue at the last row you modified in that column. This, in combination with pauses, allows you to create presentations where content shows up in multiple columns progressively, e.g. pause, show content on column 0, show content on column 1, pause, show more content, etc.

As an example, the following presentation:

# Text before

<!-- column_layout: [1, 1] -->

<!-- column: 0 -->
# hi

<!-- column: 1 -->
hi

<!-- column: 0 -->
bye mom

this is text

<!-- column: 1 -->
hi

hi

hi

hi

<!-- reset_layout -->

# Text after

Renders like this:

image

Fixes #346

@mfontanini mfontanini merged commit 7479395 into master Nov 16, 2024
6 checks passed
@mfontanini mfontanini deleted the fix/jump-back-to-column branch November 16, 2024 21:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Pausing in a different order is not possible
1 participant