Sublime Forum

Popup inside sublime text very anoying

#1

Hello,

First thing first, sorry about my english, it’s not my native langage.

So, i’m using Sublime text 3 since sometime now, and i have (not allways) a window on top of my code php, wich show me other file from my project with the same includ or same variable, etc…

It pop when my cursor is hover something, but not everytime.

The little window doesn’t have any title, only a huge list a files from my project.
i would like to disable this feature, it’s doesn’t help me, and can freez my screen during 5 or 10 seconds.

So, someone have any idea where it came from ?

Thx for your time

0 Likes

#2

I juste make a screenshot about one

found

0 Likes

#3

Set ”show_definitions” to false in your preferences.

0 Likes

#4

Thx Rwols :slight_smile:

I did find show_definitions in my preferences

However, i dind’t find show_references, i have another popup anoying about References

another

0 Likes

#5

That surprises me because the code that shows references should also be disabled:

class ShowDefinitions(sublime_plugin.EventListener):
    def on_hover(self, view, point, hover_zone):
        if not view.settings().get('show_definitions'):
            return

You can inspect it yourself by running the View Package File command from the Command Palette and opening Default/symbol.py.

0 Likes

#6

My bad, it’s possible this setting about show_definitions did disable alos “References”

I screen shot this popup before editing this show_definition value to false

Since, i didn’t saw any popup .

Thx you very much Rwols, i can enjoy again my Sublime text :slight_smile: :smiley:

1 Like