diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-06-07 10:16:15 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-06-07 10:16:15 +0100 |
commit | aca12fd89b082dd9cc12ae085a84f1805747bbdf (patch) | |
tree | 26a818cb12679b9c8bf490de3617312be4932691 /runtime | |
parent | 739f7998ab6c2383abbd8bbc7fad35e6bc3e7c43 (diff) | |
download | vim-git-aca12fd89b082dd9cc12ae085a84f1805747bbdf.tar.gz |
patch 8.2.5066: timer_create is not available on every Mac systemv8.2.5066
Problem: Timer_create is not available on every Mac system. (Hisashi T
Fujinaka)
Solution: Adjust #ifdef.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 799b856a7..932570c60 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -5076,14 +5076,23 @@ A jump table for the options with a short description can be found at |Q_op|. "space" setting is used. For example, `:set listchars=multispace:---+` shows ten consecutive spaces as: - ---+---+-- + ---+---+-- ~ *lcs-lead* lead:c Character to show for leading spaces. When omitted, leading spaces are blank. Overrides the "space" and "multispace" settings for leading spaces. You can combine it with "tab:", for example: > :set listchars+=tab:>-,lead:. -< *lcs-trail* +< *lcs-leadmultispace* + leadmultispace:c... + Like multispace value, but only for leading whitespace + Overrides |lcs-lead| for leading multiple spaces. + `:set listchars=leadmultispace:---+` shows ten consecutive + leading spaces as: + ---+---+--XXX ~ + Where "XXX" denotes the first non-blank characters in + the line. + *lcs-trail* trail:c Character to show for trailing spaces. When omitted, trailing spaces are blank. Overrides the "space" and "multispace" settings for trailing spaces. |