From 013603930679ec801249371e7a55db2a9abbb995 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20F=2E=20Sch=C3=B6nitzer?= Date: Sat, 5 Aug 2017 02:12:41 +0200 Subject: [PATCH] Documented VimwikiToggleListItemRejected --- doc/vimwiki.txt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/doc/vimwiki.txt b/doc/vimwiki.txt index bc8db38..883c06c 100644 --- a/doc/vimwiki.txt +++ b/doc/vimwiki.txt @@ -656,6 +656,10 @@ Vimwiki file. Toggle checkbox of a list item on/off. See |vimwiki-todo-lists|. +*:VimwikiToggleListItemRejected* + Toggle checkbox of a list item disabled/off. + See |vimwiki-todo-lists|. + *:VimwikiListChangeLevel* CMD Change the nesting level, or symbol, for a single-line list item. CMD may be ">>" or "<<" to change the indentation of the item, or @@ -1621,6 +1625,10 @@ Use gl (see |vimwiki_gl|) to remove a single checkbox and gL (see |vimwiki_gL|) to remove all checkboxes of the list the cursor is in. +You can mark an item as rejected ("won't do") with +|:VimwikiToggleListItemRejected.| It will not influence the status of it's +parents. + ============================================================================== 9. Tables *vimwiki-tables* @@ -2345,6 +2353,19 @@ You can set it to some more fancy symbols like this: let g:vimwiki_listsyms = '✗○◐●✓' +------------------------------------------------------------------------------ +*g:vimwiki_listsym_rejected* + +Character that is used to show that an item of a todo list will not be done. +Default value is '-'. + +The character used here may not be part of g:vimwiki_listsyms. + +You can set it to some more fancy symbols like this: +> + let g:vimwiki_listsym_rejected = '✗' + + ------------------------------------------------------------------------------ *g:vimwiki_use_mouse*