Raoul Wols
Raoul Wols
> For a 700-line code selection, it is 1000 times faster than join_lines Can you share this code?
*.cmake.in files aren't really cmake files. So we would have to apply the same trick as for *.h.in and *.hpp.in files: https://github.com/zyxar/Sublime-CMakeLists/blob/master/CMake%20C%20Header.sublime-syntax
The file_extensions key of a sublime-syntax can indeed recognize .cmake.in files. I’m uncertain whether another helper syntax like that would help much in everyone’s daily work. But if you make...
Good examples of syntax definitions are of course CMake.sublime-syntax ;) as well as the default packages: https://github.com/sublimehq/packages/ syntax definition docs: https://www.sublimetext.com/docs/3/syntax.html
@arcturus140 do you want to tackle this?
Can you merge with latest master? I tried using inlay hints with clangd. It's too intrusive and distracting for me. However I do like it for sometimes looking at large...
> So the override would be stored in the current view but the toggle would actually affect active sessions, even not in the current view? That doesn't sound right. I'm...
I fear it's because the phantom region is declared to be of zero length. This makes ST try to "keep it around" I think, because removing a line with a...
Putting it below is not particularly good looking though :) https://user-images.githubusercontent.com/2431823/122652434-204d1700-d13f-11eb-834f-7ca20e22fd5d.mov
I guess things from add_regions behaves differently in that respect than from PhantomSet. I'm afraid we're going to need a `sublime.LAYOUT_INLINE_ALIGN_LEFT` and `sublime.LAYOUT_INLINE_ALIGN_RIGHT` flag to communicate to ST that the...