mirror of
https://github.com/hail2u/vim-css3-syntax.git
synced 2025-12-08 19:44:45 +08:00
add missing word-wrap property
This commit is contained in:
@@ -42,6 +42,7 @@ HISTORY
|
|||||||
|
|
||||||
* Add CSS Shapes Module Level 1 features
|
* Add CSS Shapes Module Level 1 features
|
||||||
* Follow spec updates
|
* Follow spec updates
|
||||||
|
* Add missing properties
|
||||||
|
|
||||||
|
|
||||||
### v0.7
|
### v0.7
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
syn match cssTextProp contained "\<hanging-punctuation\>"
|
syn match cssTextProp contained "\<hanging-punctuation\>"
|
||||||
syn match cssTextProp contained "\<line-break\>"
|
syn match cssTextProp contained "\<line-break\>"
|
||||||
syn match cssTextProp contained "\<overflow-wrap\>"
|
syn match cssTextProp contained "\<\(word\|overflow\)-wrap\>"
|
||||||
syn match cssTextProp contained "\<tab-size\>"
|
syn match cssTextProp contained "\<tab-size\>"
|
||||||
syn match cssTextProp contained "\<text-\(align-last\|autospace\|justify\|shadow\|underline-position\)\>"
|
syn match cssTextProp contained "\<text-\(align-last\|autospace\|justify\|shadow\|underline-position\)\>"
|
||||||
syn match cssTextProp contained "\<word-break\>"
|
syn match cssTextProp contained "\<word-break\>"
|
||||||
|
|||||||
@@ -412,6 +412,7 @@
|
|||||||
.text {
|
.text {
|
||||||
hanging-punctuation: loose;
|
hanging-punctuation: loose;
|
||||||
line-break: strict;
|
line-break: strict;
|
||||||
|
word-wrap: auto;
|
||||||
overflow-wrap: hanging;
|
overflow-wrap: hanging;
|
||||||
tab-size: distribute;
|
tab-size: distribute;
|
||||||
text-align-last: kashida;
|
text-align-last: kashida;
|
||||||
|
|||||||
Reference in New Issue
Block a user