Wed, 25 Sep 2024 15:03:13 -0500
No LSP autostart when read-only
I think nvim actually threw out 'view' argc detection, I just use -R and alias
view to it.
929 | 1 | #!/bin/sh |
2 | exec pandoc \ | |
3 | --quiet \ | |
4 | --standalone \ | |
5 | -f markdown+smart \ | |
6 | -t html5 \ | |
7 | --toc \ | |
8 | --toc-depth=5 \ | |
9 | --self-contained \ | |
10 | --template=md2html \ | |
931 | 11 | "$@" |