diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-11-05 13:17:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-05 13:17:23 +0100 |
commit | 22fa66bb1d502e250d972b1814552412cc2e87fe (patch) | |
tree | 1b2db4ae7e5dacd3a51611301e180ccb046563e2 /runtime | |
parent | 4d757bbfbb6c0e5280563779c4b4ee1ce9142cf0 (diff) | |
parent | 68cb4a7405ea9f8841d1f25ee8997c49e77fa679 (diff) | |
download | rneovim-22fa66bb1d502e250d972b1814552412cc2e87fe.tar.gz rneovim-22fa66bb1d502e250d972b1814552412cc2e87fe.tar.bz2 rneovim-22fa66bb1d502e250d972b1814552412cc2e87fe.zip |
Merge pull request #25882 from bfredl/noundo
feat(extmarks): add "no_undo_restore" flag to opt out of undo-restoring
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/news.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index b88b7d164f..e32e1aadb6 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -270,6 +270,9 @@ The following changes to existing APIs or features add new behavior. In addition, |nvim_buf_get_extmarks()| has gained an "overlap" option to return such ranges even if they started before the specified position. +• Extmarks can opt-out of precise undo tracking using the new "undo_restore" + flag to |nvim_buf_set_extmark()| + • LSP hover and signature help now use Treesitter for highlighting of Markdown content. Note that syntax highlighting of code examples requires a matching parser |