Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Update completions json #118

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
56 changes: 56 additions & 0 deletions completions.json
Original file line number Diff line number Diff line change
Expand Up @@ -1609,6 +1609,15 @@
"values": [],
"description": "The CSS all shorthand property resets all properties, apart from unicode-bidi and direction, to their initial or inherited value."
},
"text-justify": {
"values": [
"auto",
"none",
"inter-word",
"inter-character",
"inherit"
]
},
"column-fill": {
"values": [
"auto",
Expand Down Expand Up @@ -1674,6 +1683,29 @@
],
"description": "Specifies the scrolling behavior for a scrolling box, when scrolling happens due to navigation or CSSOM scrolling APIs."
},
"justify-self": {
"values": [
"auto",
"normal",
"stretch",
"center",
"start",
"end",
"flex-start",
"flex-end",
"self-start",
"self-end",
"left",
"right",
"baseline",
"first",
"last",
"safe",
"unsafe",
"inherit",
"initial"
]
},
"grid-column": {
"values": [
"auto"
Expand All @@ -1699,6 +1731,30 @@
"type": "color",
"description": "Sets the color of the insertion caret—the visible indicator of the point at which the next character typed by the user will be inserted—within an element such as input or one with the contenteditable attribute set."
},
"justify-items": {
"values": [
"auto",
"normal",
"stretch",
"center",
"start",
"end",
"flex-start",
"flex-end",
"self-start",
"self-end",
"left",
"right",
"baseline",
"first",
"last",
"safe",
"unsafe",
"legacy",
"inherit",
"initial"
]
},
"grid-template-columns": {
"values": [
"auto"
Expand Down
2 changes: 1 addition & 1 deletion spec/provider-spec.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ describe "CSS property name and value autocompletions", ->
"""
editor.setCursorBufferPosition([1, 0])
completions = getCompletions(activatedManually: true)
expect(completions.length).toBe 237
expect(completions.length).toBe 240
for completion in completions
expect(completion.text.length).toBeGreaterThan 0
expect(completion.type).toBe 'property'
Expand Down