add css-overflow-3.vim and test

This commit is contained in:
Kyo Nagashima
2013-05-27 01:20:22 +09:00
parent b542ae84f6
commit 6540e20e24
2 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
" TODO: create cssOverflowProp group and cssOverflowAttr group
syn match cssFontProp contained "\<max-lines\>"
syn keyword cssFontAttr contained fragments
syn match cssFontAttr contained "\<paged-\(x\|y\)\(-controls\)\=\>"

View File

@@ -319,6 +319,14 @@
column-width: auto;
}
.overflow {
max-lines: paged-x;
display: paged-y;
display: paged-x-controls;
display: paged-y-controls;
display: fragments;
}
.preslev {
presentation-level: increment;
}