aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Anders <8965202+gpanders@users.noreply.github.com>2023-11-17 08:07:35 -0600
committerGitHub <noreply@github.com>2023-11-17 08:07:35 -0600
commit677be4bdd224f25519d9072a923d2c707842c6ad (patch)
tree858fb2b37dd4afe9b0c969b547dfc5ecd5d55e86
parent7af89ef464fb23125ac49e6b19f3509e7009fe23 (diff)
downloadrneovim-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.txt7
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),