Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: mhersson/mpls

Tags

v0.16.0

Toggle v0.16.0's commit message
docs(readme): Fix formatting

v0.15.4

Toggle v0.15.4's commit message
feat(mpls): add file extension filtering for markdown files

v0.15.3

Toggle v0.15.3's commit message
Update README with new Neovim 0.11+ config

v0.15.2

Toggle v0.15.2's commit message
Fix missing scroll anchor id on text node type

Somehow the ast.Text node type went missing with the previous change
causing scroll-to-edit not work as intended.

v0.15.1

Toggle v0.15.1's commit message
More scroll accuracy improvements

Added a fallback for node types where it is not possible to set the
scroll anchor id tag directly, setting the id on the previous element in
the tree where this is possible.

v0.15.0

Toggle v0.15.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #16 from mhersson/feature/improve-scolling

Improve the scroll accuracy

v0.14.0

Toggle v0.14.0's commit message
Upgrade golangci-lint to v2

v0.13.3

Toggle v0.13.3's commit message
Support display of images in documents not located in the project root

This commit adds support for displaying images with a relative path seen
from the document, and not only from the project root. Previously mpls
would not be able to show images used in markdown files in sub
directories of the project root. e.g if your markdown file was located
in a sub directory of the project root called docs together with some
images, mpls would not find the images since they would be referenced
with either ./ or just the filenames, and thus miss the docs folder in
the path. This commit fixes this.

v0.13.2

Toggle v0.13.2's commit message
Update release workflow and make use of go's internal build info

v0.13.1

Toggle v0.13.1's commit message
Ignore editorChangedFocus if the URI is the same

Before this  change, opening a new document would
immediately be followed by a reload of the
document that was just opened because the editor
would also change focus.