-
Notifications
You must be signed in to change notification settings - Fork 28
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
[FR]: Syntax highlighting in code snippets in help files in nvim #129
Comments
(I promise I will shut up about syntax highlighting soon, haha!) |
The idea can be tested out by opening a new buffer called whatever: And then pasting some SuperCollider code inside of start/end brackets of sorts, and then outside of it normal text.
Then run these commands :syntax on
:syntax include @SC syntax/supercollider.vim
:syntax region scSnip matchgroup=Snip start="@begin=supercollider@" end="@end=supercollider@" contains=@SC
:hi link Snip SpecialComment |
I have some ideas for this which I could turn into a PR if you think it's a good idea @davidgranstrom |
But I think it would be good to have the start/end tags concealed and encapsulated in SC comments to avoid execution by the user and then change the schelp file converter class to wrap the code examples with these. |
PR here |
Is your feature request related to a problem? Please describe.
It would be nice with proper syntax highlighting in the neovim help files for scnvim.
Describe the solution you'd like
I imagine that the
supercollider.vim
syntax highlighter is triggered within each code snippet in the help files, but not outside of it, leaving the rest of the help file as is.Vim has some solutions for this, see
:h syn-include
.There's an example described here:
https://vim.fandom.com/wiki/Different_syntax_highlighting_within_regions_of_a_file
It would probably have to end up in a sort of tag around each code snippet for the syntax highlighter to clearly understand the start and end of each code snippet in the help file so that we can setup highlight regions / groups for those.
The text was updated successfully, but these errors were encountered: