Vimwiki Versions Save

Personal Wiki for Vim

v2.2.1

8 years ago

Removed

  • Removed the option g:vimwiki_debug, which probably nobody used. If you want it back, file an issue at Github.

Fixed

  • Don't do random things when the user has remapped the z key
  • Don't ask for confirmation when following an URL in MacOS
  • Always jump to the first occurrence of a tag in a file
  • Don't move the cursor when updating the TOC
  • Fix some issues with the TOC when folding is enabled

v2.2

8 years ago

New

  • Support for anchors, see |vimwiki-anchors|
    • in this context, add support for TOC, see |vimwiki-toc|
    • add omni completion of wiki links (files and anchors)
    • new local option |vimwiki-option-auto_toc|
    • new global option |g:vimwiki_toc_header|
  • Support for tags, see |vimwiki-syntax-tags|
  • List editing capabilities, see |vimwiki-lists|:
    • support for auto incrementing numbered lists
    • more key maps for list manipulation, see |vimwiki-list-manipulation|
    • improved automatic adjustment of checkboxes
    • text objects for list items, see |vimwiki-text-objects|
  • New command |VimwikiCheckLinks| to check for broken links
  • New global option |g:vimwiki_auto_chdir|
  • New global option |g:vimwiki_map_prefix|
  • Support for wiki links absolute to the wiki root
  • Added the |VimwikiLinkConverter| function
  • Issue #24: Basic support for remote directories via netrw
  • Issue #50: in HTML, tables can now be embedded in lists
  • When converting to HTML, show a message with the output directory
  • Add auto completion for |VimwikiGoto|
  • Add Chinese Readme file

Changed

  • Wiki files must not contain # anymore, because # is used to separate the file from an anchor in a link.
  • replace the function vimwiki#base#resolve_scheme() by vimwiki#base#resolve_link() (relevant if you have a custom |VimwikiLinkHandler| which used this function)
  • The semantic of "file:" and "local:" links changed slightly, see |vimwiki-syntax-links| for what they mean now
  • The meaning of a link like [[/some/directory/]] changed. It used to be a link to the actual directory /some/directory/, now it's relative to the root of the current wiki. Use [[file:/some/directory/]] for the old behavior.

Removed

  • the %toc placeholder is now useless, use |vimwiki-toc| instead
  • the global option g:vimwiki_auto_checkbox is now useless and removed

Fixed

  • Issue 415: Disable folding if g:vimwiki_folding is set to ''
  • Fix slowdown in Vim 7.4
  • Issue #12: Separate diaries from different wikis
  • Issue #13: Fix :VimwikiRenameLink on links containing a dot
  • Always jump to previous link on <S-Tab>, not to beginning of link
  • Issue #27: Fix <CR> on a visual selection sometimes not working
  • |VimwikiBackLinks| now recognizes much more valid links
  • Issue 424: make external links with #, % work under Linux
  • Issue #39: don't htmlize stuff inside pre tags
  • Issue #44: faster formatting of large tables
  • Issue #52: Recognize markdown links when renaming wiki file
  • Issue #54: Disable 'shellslash' on Windows to avoid problems
  • Issue #81: Don't get stuck when converting a read-only file
  • Issue #66: Better normalizing of links in diary
  • Fix the menu in GVim, which was sometimes not shown correctly
  • |VimwikiGenerateLinks| now also generates links for subdirectories
  • Issue #93: Don't process placeholders inside preformatted text
  • Issue #102: Add default values to some options like the doc says
  • Issue #144: Fix bug with folds shortening on multibyte characters
  • Issue #158: Detect the OS correctly
  • |VimwikiGenerateLinks| now replaces a potentially existing old list
  • Fix uneven indentation of list items with checkboxes in HTML
  • Various small fixes
  • Corrected website links in documentation. code.google is dead, long live Github!