Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix #83 complete_function_argument() takes 4 args
Browse files Browse the repository at this point in the history
braver committed Jun 17, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent f9bcfe2 commit 79bf626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sass_completions.py
Original file line number Diff line number Diff line change
@@ -634,7 +634,7 @@ def on_query_completions(self, view, prefix, locations):
self.re_name = re.compile(r":?([a-zA-Z-]+)\s*:?[^:;{}]*$")

if match_selector(view, pt, "meta.property-value.css meta.function-call"):
items = self.complete_function_argument(view, prefix, pt, is_scss)
items = self.complete_function_argument(view, prefix, pt)
elif match_selector(view, pt, "meta.property-value.css"):
items = self.complete_property_value(view, prefix, pt, is_scss)
else:

0 comments on commit 79bf626

Please sign in to comment.