diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-03-10 13:43:49 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-03-10 13:43:49 +0100 |
commit | 12682fda7aa95033cc62c93f94b07b57bb49e1c9 (patch) | |
tree | 6b5a3eb43b8c0a7753bb52d9dce01624ae61a991 /runtime/doc | |
parent | 66ca320d9ee4953cc71991a4ddec17f11f3407ac (diff) | |
download | vim-git-12682fda7aa95033cc62c93f94b07b57bb49e1c9.tar.gz |
updated for version 7.2.389v7.2.389
Problem: synIDattr() cannot return the font.
Solution: Support the "font" argument. (Christian Brabandt)
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/eval.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 6f5a8f725..e742bb14c 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -5388,6 +5388,8 @@ synIDattr({synID}, {what} [, {mode}]) *synIDattr()* the color, cterm: color number as a string, term: empty string) "bg" background color (as with "fg") + "font" font name (only available in the GUI) + |highlight-font| "sp" special color (as with "fg") |highlight-guisp| "fg#" like "fg", but for the GUI and the GUI is running the name in "#RRGGBB" form @@ -5397,6 +5399,7 @@ synIDattr({synID}, {what} [, {mode}]) *synIDattr()* "italic" "1" if italic "reverse" "1" if reverse "inverse" "1" if inverse (= reverse) + "standout" "1" if standout "underline" "1" if underlined "undercurl" "1" if undercurled |