diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2023-11-17 08:07:35 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-17 08:07:35 -0600 |
commit | 677be4bdd224f25519d9072a923d2c707842c6ad (patch) | |
tree | 858fb2b37dd4afe9b0c969b547dfc5ecd5d55e86 | |
parent | 7af89ef464fb23125ac49e6b19f3509e7009fe23 (diff) | |
download | rneovim-677be4bdd224f25519d9072a923d2c707842c6ad.tar.gz rneovim-677be4bdd224f25519d9072a923d2c707842c6ad.tar.bz2 rneovim-677be4bdd224f25519d9072a923d2c707842c6ad.zip |
docs: document breaking change of cursor blink behavior (#26075)
-rw-r--r-- | runtime/doc/news.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index cb3220a630..59f419128d 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -15,6 +15,13 @@ BREAKING CHANGES *news-breaking* The following changes may require adaptations in user config or plugins. +• In some cases, the cursor in the Nvim |TUI| would blink even without + configuring 'guicursor' as mentioned in |cursor-blinking|. This was a bug + that has now been fixed. If your cursor has stopped blinking, add the + following (or similar, adapted to user preference) to your |config| file: >vim + + set guicursor+=n-v-c:blinkon500-blinkoff500 +< • |vim.tbl_islist()| now checks whether a table is actually list-like (i.e., has integer keys without gaps and starting from 1). For the previous behavior (only check for integer keys, allow gaps or not starting with 1), |