Hello! Is it possible to do something in Sublime Text 3, so that when writing the css property in the tooltip it would produce a list of all possible values ​​for it? If this can be done using the plugin, write pls name.

  • A lot of them. Tips that I often use: Emmet, Hayaku, CSS Snippets, Sublime Web Colors, CSSFontFamily. Try searching for any packages for your requests on the Package Control website , in this case using the CSS keyword. Thank. - Sasha Chernykh

1 answer 1

Can. To do this, install CCS3.

For installation:

  1. Open the command line Sublime with the keyboard shortcut "CTRL + SHIFT + P"
  2. Type "Package Control: Install Package" and press Enter
  3. Enter the name of the package "CSS3" and press Enter

Next you need to disable the package "CSS". For this:

  1. Open the command line Sublime with the keyboard shortcut "CTRL + SHIFT + P"
  2. Type "Package Control: Disable Package" and press Enter
  3. Enter the name of the package "CSS" and press Enter

Next, you need to set CCS3 as the default language for .css files. To do this, open any .css file and select from the menu View → Syntax → Open all with current extension as ... → CSS3

Note:

By default, when you enter a value, a list of values ​​appears. enter image description here

Also, the list of values ​​can be called with the "CTRL + SPACE" key combination. enter image description here

  • 1. I would not recommend using CSS3, in the default CSS syntax there are already more features. When I wrote the color scheme , I found out that in CSS3 there is a relatively poor syntax, why I refused to support it. // 2. Disable CSS package is not necessary if we install a different syntax for css files. // 3. Well, in my opinion it is wrong to mention in the answer only about one package when there are many of them (see my commentary on the question). // Thank. - Sasha Chernykh