Sublime Forum

What is the scope of html attribute double quote

#1

I am working on my own completion, I have a case when I type something inside double quote in php file sublime will make suggestion for me

some thing like this:

<input type="number" value="Complettion/Sugesstion HERE">

what scope should I put in my autocomplete file to so sublime will suggest text when I type in double quote in php file within html syntax?

0 Likes

#2

I don’t have the answer, but the default shortcut ctrl+shift+alt+p will display in the taskbar the scope under the cursor.

0 Likes

#3

are you sure? I checked there is no such command. I’m suing sublime 3

0 Likes

#4

In the default windows keybinding:

{ “keys”: [“ctrl+alt+shift+p”], “command”: “show_scope_name” },

You can bind that command to use it if it is not bind on your system.

0 Likes

#5

You can also try ScopeHunter.

0 Likes