Hi,
Sorry if my english is bad. It is not my native language
I am looking for a smart plugin that can list all CSS Selectors, Properties & Values.
For instance if I write:
Exemple 1: Selectors
.(cursor)
I’d like Sublime Text to list all the classes created and associated with the current CSS file.
CodeIntel doesn’t allow that. For common selectors, Sublime Text thinks I am looking for a property, so it list properties. I need to add brackets for him to understand it’s actually a Selector.
Exemple 2: Properties
body
{
(cursor)
}
I’d like Sublime Text to list all the possible properties, without the need to write any letter first (which restrain the list to an alphabetic list).
CodeIntel doesn’t allow that.
Exemple 3: Values
body
{
background-color: (cursor)
}
I’d like Sublime Text to list all the possible values like green, white, black, etc.
CodeIntel doesn’t allow that. Worst, when you type ctrl+maj+space to enter manual mod, the list is so weird (at least for me, because I am a newbie) :
hsl()
hsla()
inherit
rgb()
rgba()
…
I was expecting basic colors, so what is that ?
These are basic features I found in some IDE like Microsoft Expression Web, so i’m surprised it is hard to find a plugin for it !
This really bothers me because I am new to the CSS/HTML/PHP/etc world, so i don’t know any property or value. So if they are displayed by Sublime Text, it is easier for me to learn them.
Thanks for any help