Sublime Forum

Build Results panel: How to hide the ruler?

#1

I use the ruler feature in Sublime at column 79. I can hide it in the Find Results panel by creating a Find Results.sublime-settings file in my User package:

{
    "rulers": []
}

How can I do the same for Build Results? The obvious corresponding file name does not work.

0 Likes

#2

A build system can have a syntax entry that specifies the language syntax for use in the build window used for that build system. The default value for this if the build system does not specify one is Packages/Text/Plain text.tmLanguage. This means that by default the syntax specific settings for plain text also apply to the build window.

2 Likes

#3

Thanks - great info - solved my problem.

0 Likes

#4

I’m not sure, but I think that Widgets.sublime-settings can affect it also…

No, that’s wrong. It doesn’t affect the build system result.

0 Likes

#5

They do. Sometimes.

Or well, not after you ran the exec command, but other plugins can use the same output panel (LaTeXTools, for example) without setting a syntax and thus not turning it into a “regular” view.

0 Likes