Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Package for showing all possible CSS values in Sublime Text 2?

With the basic Sublime Text 2 build, I am getting CSS value autocompletion only when I type the first letter of the value, as seen in the image below.

Basic CSS autocompletion

However, I've been watching the Tuts HTML+CSS web tutorials (here is an example video), and his Sublime Text build shows all possible CSS for a given attribute. Below is a screenshot from the linked example video.

Display of all possible CSS values for a given attribute

My question is what setting or package allows for the display of all possible CSS values for a given attribute?

like image 571
LanceLafontaine Avatar asked Jul 22 '14 17:07

LanceLafontaine


People also ask

Does Sublime Text support CSS?

4.0. Sublime Text contains a custom HTML and CSS engine, named minihtml, for displaying stylized content in editor panes. HTML content can be displayed in both popup windows and phantoms.

How do I code HTML in Sublime Text?

In the browser menu bar, find the Open File option. Navigate to your HTML file and select Open. You can now view your HTML in the web browser. To make changes, simply modify the file in Sublime Text, save your work, then refresh the web browser tab and watch the web page update!


2 Answers

No additional packages or specific settings were needed to solve this issue. The Ctrl/Cmd+Space keyboard shortcut natively displays all possible completions.

like image 96
LanceLafontaine Avatar answered Oct 19 '22 23:10

LanceLafontaine


Try different plugins through Package Control.

Specifically trying these may work for you:

  • CSS Completions
  • Emmet CSS Snippets
  • CSS Extended Completions (requires ctrl/cmd + space)
like image 3
mswieboda Avatar answered Oct 19 '22 23:10

mswieboda