Skip to content

Commit 51242e8

Browse files
committed
Add grid-auto-flow values
1 parent f1c7288 commit 51242e8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

autoload/csscomplete.vim

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,8 @@ function! csscomplete#CompleteCSS(findstart, base)
341341
elseif prop == 'font'
342342
let values = ["normal", "italic", "oblique", "small-caps", "bold", "bolder", "lighter", "100", "200", "300", "400", "500", "600", "700", "800", "900", "xx-small", "x-small", "small", "medium", "large", "x-large", "xx-large", "larger", "smaller", "sans-serif", "serif", "monospace", "system-ui", "emoji", "math", "fangsong", "cursive", "fantasy", "caption", "icon", "menu", "message-box", "small-caption", "status-bar"]
343343
let postfix = ""
344+
elseif prop == 'grid-auto-flow'
345+
let values = ["row", "column", "dense"]
344346
elseif prop =~ '^\%(height\|width\)$'
345347
let values = ["auto", "border-box", "content-box", "max-content", "min-content", "available", "fit-content"] + length_values
346348
elseif prop =~ '^\%(left\|rigth\)$'

0 commit comments

Comments
 (0)