Sublime Forum

How to remove the file path tips when saving

#1

This problem never happened before I upgraded to Build 3126, I don’t know whether it’s the sublime’s problem or some plugins’.
When I saving the code, the file path automatically show up. I have to click the ‘x’ to close these tips. It’s very annoying :disappointed:
Anyone knows how to set the tips not show up anymore?
With many Thanks :slightly_smiling:

0 Likes

#2

From the release notes for build 3124:

Build errors are now shown inline at the location where they occurred. This is controlled with the show_errors_inline setting.

From the Packages/Default/Preferences.sublime-settings file:

    // Shows build errors just under the line on which they occur.
    "show_errors_inline": true,

So, you need to open up your preferences file and set that value to false. Or, you could open the settings specific to your file type and set the preference there so that it’s only turned off for this particular type of file. Or, you could configure whatever plugin you have that’s performing a build every time you save to not build on save (probably not a good idea to do that, though).

1 Like

#3

It works as you said. Thanks

0 Likes