Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added auto-completion script (modified from Sublime Text 2 CSS package) #115

Merged
merged 1 commit into from
Nov 25, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
196 changes: 196 additions & 0 deletions scss_completions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,196 @@
# Modified from Sublime Text 2 CSS Package

import sublime, sublime_plugin
import re


common = { "color": ["rgb($1)", "rgba($1)", "hsl($1)", "hsla($1)", "transparent"],
"uri": ["url($1)"],
"border-style": ["none", "hidden", "dotted", "dashed", "solid", "double", "groove", "ridge", "inset", "outset"],
"border-width": ["thin", "medium", "thick"],
"shape": ["rect($1)"],
"generic-family": ["serif", "sans-serif", "cursive", "fantasy", "monospace"] }

css_data = """
"background-attachment"=scroll | fixed | inherit
"background-color"=<color> | inherit
"background-image"=<uri> | none | inherit
"background-position"=left | center | right | top | bottom | inherit
"background-repeat"=repeat | repeat-x | repeat-y | no-repeat | inherit
"background"=<color> | <uri> | repeat | repeat-x | repeat-y | no-repeat | scroll | fixed | left | center | right | top | bottom | inherit
"border-collapse"=collapse | separate | inherit
"border-color"=<color> | inherit
"border-spacing"=inherit
"border-style"=<border-style> | inherit
"border-top" "border-right" "border-bottom" "border-left"=<border-width> | <border-style> | <color> | inherit
"border-top-color" "border-right-color" "border-bottom-color" "border-left-color"=<color> | inherit
"border-top-style" "border-right-style" "border-bottom-style" "border-left-style"=<border-style> | inherit
"border-top-width" "border-right-width" "border-bottom-width" "border-left-width"=<border-width> | inherit
"border-width"=<border-width> | inherit
"border"= <border-width> | <border-style> | <color> | inherit
"bottom"=<length> | <percentage> | auto | inherit
"caption-side"=top | bottom | inherit
"clear"=none | left | right | both | inherit
"clip"=<shape> | auto | inherit
"color"=<color> | inherit
"content"=normal | none | <uri> | open-quote | close-quote | no-open-quote | no-close-quote | inherit
"counter-increment"=none | inherit
"counter-reset"=none | inherit
"cursor"=<uri> | auto | crosshair | default | pointer | move | e-resize | ne-resize | nw-resize | n-resize | se-resize | sw-resize | s-resize | w-resize | text | wait | help | progress | inherit
"direction"=ltr | rtl | inherit
"display"=inline | block | list-item | inline-block | table | inline-table | table-row-group | table-header-group | table-footer-group | table-row | table-column-group | table-column | table-cell | table-caption | none | inherit
"empty-cells"=show | hide | inherit
"float"=left | right | none | inherit
"font-family"=<generic-family>| inherit
"font-size"=inherit
"font-style"=normal | italic | oblique | inherit
"font-variant"=normal | small-caps | inherit
"font-weight"=normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | inherit
"font"=normal | italic | oblique | normal | small-caps | normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | normal | <generic-family> | caption | icon | menu | message-box | small-caption | status-bar | inherit
"height"=<length> | <percentage> | auto | inherit
"left"=<length> | <percentage> | auto | inherit
"letter-spacing"=normal | <length> | inherit
"line-height"=normal | <number> | <length> | <percentage> | inherit
"list-style-image"=<uri> | none | inherit
"list-style-position"=inside | outside | inherit
"list-style-type"=disc | circle | square | decimal | decimal-leading-zero | lower-roman | upper-roman | lower-greek | lower-latin | upper-latin | armenian | georgian | lower-alpha | upper-alpha | none | inherit
"list-style"=disc | circle | square | decimal | decimal-leading-zero | lower-roman | upper-roman | lower-greek | lower-latin | upper-latin | armenian | georgian | lower-alpha | upper-alpha | none | inside | outside | <uri> | inherit
"margin-right" "margin-left"=<margin-width> | inherit
"margin-top" "margin-bottom"=<margin-width> | inherit
"margin"=<margin-width> | inherit
"max-height"=<length> | <percentage> | none | inherit
"max-width"=<length> | <percentage> | none | inherit
"min-height"=<length> | <percentage> | inherit
"min-width"=<length> | <percentage> | inherit
"opacity"=<number> | inherit
"orphans"=<integer> | inherit
"outline-color"=<color> | invert | inherit
"outline-style"=<border-style> | inherit
"outline-width"=<border-width> | inherit
"outline"=<color> | <border-style> | <border-width> | inherit
"overflow"=visible | hidden | scroll | auto | inherit
"padding-top" "padding-right" "padding-bottom" "padding-left"=<padding-width> | inherit
"padding"=<padding-width> | inherit
"page-break-after"=auto | always | avoid | left | right | inherit
"page-break-before"=auto | always | avoid | left | right | inherit
"page-break-inside"=avoid | auto | inherit
"position"=static | relative | absolute | fixed | inherit
"quotes"=none | inherit
"right"=<length> | <percentage> | auto | inherit
"table-layout"=auto | fixed | inherit
"text-align"=left | right | center | justify | inherit
"text-decoration"=none | underline | overline | line-through | blink | inherit | none
"text-indent"=<length> | <percentage> | inherit
"text-transform"=capitalize | uppercase | lowercase | none | inherit
"top"=<length> | <percentage> | auto | inherit
"unicode-bidi"=normal | embed | bidi-override | inherit
"vertical-align"=baseline | sub | super | top | text-top | middle | bottom | text-bottom | <percentage> | <length> | inherit
"visibility"=visible | hidden | collapse | inherit
"white-space"=normal | pre | nowrap | pre-wrap | pre-line | inherit
"widows"=<integer> | inherit
"width"=<length> | <percentage> | auto | inherit
"word-spacing"=normal | <length> | inherit
"z-index"=auto | <integer> | inherit


"background-clip"=<box>
"background-origin"=<box>
"background-size"=<bg-size>
"border"=<border-width> | <border-style> | <color>
"border-color"=<color>
"border-image"=<border-image-source> | <border-image-slice> | <border-image-width> | <border-image-width> | <border-image-outset> | <border-image-repeat>
"border-image-outset"=<length> | <number>
"border-image-repeat"=stretch | repeat | round | space
"border-image-slice"=<number> | <percentage>
"border-image-source"=none | <image>
"border-image-width"=<length> | <percentage> | <number> | auto
"border-radius"=<length> | <percentage>
"border-style"=<border-style>
"border-top" "border-right" "border-bottom" "border-left"=<border-width> | <border-style> | <color>
"border-top-color" "border-right-color" "border-bottom-color" "border-left-color"=<color>
"border-top-left-radius" "border-top-right-radius" "border-bottom-right-radius" "border-bottom-left-radius"=<length> | <percentage>
"border-top-style" "border-right-style" "border-bottom-style" "border-left-style"=<border-style>
"border-top-width" "border-right-width" "border-bottom-width" "border-left-width"=<border-width>
"border-width"=<border-width>
"box-decoration-break"=slice | clone
"box-shadow"=none | <shadow> | none
"""

def parse_css_data(data):
props = {}
for l in data.splitlines():
if l == "":
continue

names, values = l.split('=')

allowed_values = []
for v in values.split('|'):
v = v.strip()
if v[0] == '<' and v[-1] == '>':
key = v[1:-1]
if key in common:
allowed_values += common[key]
else:
allowed_values.append(v)

for e in names.split():
if e[0] == '"':
props[e[1:-1]] = sorted(allowed_values)
else:
break

return props

class SCSSCompletions(sublime_plugin.EventListener):
props = None
rex = None

def on_query_completions(self, view, prefix, locations):
if not view.match_selector(locations[0], "source.scss - meta.attribute-selector.scss"):
return []

if not self.props:
self.props = parse_css_data(css_data)
self.rex = re.compile("([a-zA-Z-]+):\s*$")

l = []
if (view.match_selector(locations[0], "meta.property-value.scss") or
# This will catch scenarios like .foo {font-style: |}
view.match_selector(locations[0] - 1, "meta.property-value.scss")):
loc = locations[0] - len(prefix)
line = view.substr(sublime.Region(view.line(loc).begin(), loc))

m = re.search(self.rex, line)
if m:
prop_name = m.group(1)
if prop_name in self.props:
values = self.props[prop_name]

add_semi_colon = view.substr(sublime.Region(locations[0], locations[0] + 1)) != ';'

for v in values:
desc = v
snippet = v

if add_semi_colon:
snippet += ";"

if snippet.find("$1") != -1:
desc = desc.replace("$1", "")

l.append((desc, snippet))

return (l, sublime.INHIBIT_WORD_COMPLETIONS)

return None
else:
add_colon = not view.match_selector(locations[0], "meta.property-name.scss")

for p in self.props:
if add_colon:
l.append((p, p + ": "))
else:
l.append((p, p))

return (l, sublime.INHIBIT_WORD_COMPLETIONS)