vimwiki

Personal wiki for vim
git clone https://github.com/vimwiki/vimwiki.git
Log | Files | Refs | README | LICENSE

commit d0e6d5e517120c85e25d5e32d60bbd26f7d82451
parent 0bb1b4945bb205a076a35b66174e5d66be8eaafe
Author: Brennen Bearnes <code@p1k3.com>
Date:   Mon, 22 Jan 2024 21:04:26 -0700

v2024.01.22: update version number and changelog

Includes some recent authors on the contributor list, and an attempt at
getting the changelog up to date.

Diffstat:
Mdoc/vimwiki.txt | 27++++++++++++++++++++++++++-
Mplugin/vimwiki.vim | 2+-
2 files changed, 27 insertions(+), 2 deletions(-)

diff --git a/doc/vimwiki.txt b/doc/vimwiki.txt @@ -4007,6 +4007,10 @@ Contributors and their Github usernames in roughly chronological order: - Luke Atkinson (@LukeDAtkinson) - Joe Planisky (@jplanisky) - Bence Ferdinandy (@ferdinandyb) + - R. David Dunphy (@rdunphy) + - Aarón Fas (@aaronfc) + - @jiamingc + - Alex Claman (@claman) ============================================================================== @@ -4025,12 +4029,32 @@ master is retained as a legacy mirror of the dev branch. This is somewhat experimental, and will probably be refined over time. + +2024.01.22~ + New:~ * Issue #1279: Fix/Improvement: When re-wrap a long line in a definition by 'gq' it should insert ':: ' at the new line + * Issue #1211: Support angle bracket escaped markdown urls + * Make auto_tags preserve existing tag section structure + * Issue #1315: GTD-style token highlighting + * Issue #1279: gqq autowrap leading :: definition as &l:comments + * Issue #1332: message URLs on Mac + * Util: add vimwiki#vars#set_syntaxlocal function for consistency Fixed:~ - * Issue #1365: Fix: count ignored when looking up diary frequency + * Issue #1365: Fix: count ignored when looking up diary frequency Issue + * Issue #1323: Folding code blocks using markdown syntax folds the entire rest of + the file + * Issue #1365: Jumping to nested anchor with markdown + * Issue #1297: Handle multibyte chars properly in table separators + * Issue #1311: Newlines in HTML conversion of codeblocks + * Issue #1326: Duplicate tag generation + * Issue #1324: File name prompt fixes + * Fix vimwiki#diary#calendar_sign when g:vimwiki_list is not set + * Use fnameescape() instead of escape() in edit_file() + * Admit trailing spaces for YAML delimiters + * Minor documentation fixes and CI improvements 2023.04.04~ @@ -4042,6 +4066,7 @@ Fixed:~ * Issue #1336: vimwiki#diary#calendar_sign throws an error when g:vimwiki_list is not set + 2023.04.04~ New:~ diff --git a/plugin/vimwiki.vim b/plugin/vimwiki.vim @@ -11,7 +11,7 @@ endif let g:loaded_vimwiki = 1 " Set to version number for release: -let g:vimwiki_version = '2023.05.12' +let g:vimwiki_version = '2024.01.22' " Get the directory the script is installed in let s:plugin_dir = expand('<sfile>:p:h:h')