alienhard / SublimeAllAutocomplete

Extend Sublime autocompletion to find matches in all open files of the current window
918 stars 110 forks source link

Prefer Sublime's default completion for CSS #28

Closed jomo closed 7 years ago

jomo commented 10 years ago

This plugin works great for most things. I like it. :+1:

However, in CSS (or SCSS) files I prefer sublime's own auto-completion because it recognizes keywords, inserts colons, spaces and semicolons.

Sublime's options are still available, but they aren't the ones first selected so you would need to scroll down.

/* · = space */
/* | = cursor */

/* CSS keywords */
padding|            /* AllAutoComplete */
padding:·|          /* Sublime built in completion */

/* CSS values */
padding:·inherit|   /* AllAutoComplete */
padding:·inherit;|  /* Sublime built in completion */
Frexuz commented 9 years ago

:+1: Vote up

alienhard commented 7 years ago

Support for syntax-specific exclusions is supported now. Please see the README for details.