vimwiki
vimwiki copied to clipboard
Personal Wiki for Vim
Feature proposal: There should probably be a :VimwikiMakeLink to turn word under cursor into a link
Documenting a bit of discussion with rj1 on `#vimwiki`: ```irc 20:48 oh hey - looks like you might want :VimwikiFollowLink instead of calling the function (vimwiki#base#normalize_link()) directly 20:48 (maybe?) 20:48...
If a file contains multiple occurrences of the same tag then `:VimwikiGenerateTagLinks` will create identical links and each link will only jump to the first occurrence of the tag in...
Currently a heading like `== foo ==` is converted to something like `foo` – this is invalid HTML, since id's must be unique.
List of bugs report due to HTML bad parsing (state machine vs region) - [ ] #92 Code quotes `$` `$` ->` \( \)` - [ ] #281 Allow `\|`...
A constant source of bugs is the sloppy, ad-hoc internal handling of file paths. Currently, paths are represented by strings and manipulated either "manually" using string operations or by using...
I notice that links in tables use the syntax highlighting group `VimwikiLinkT` while outside of a table it's 'VimwikiLink`. My links in the table show the `[[` and `]]`, and...
# Current Method The current method (in dev branch) uses these command arguments for a custom renderer: ``` [0|1] [markdown|vimwiki] [ext] [outDir] [inFile] [cssFile] [templateDir] [templateNmae] [templateExt] [relRootDir] - [customArgs]...
I've been toying with the idea of converting my website from a wordpress site to a set of vimwiki pages, using Disqus for handling comments. The Disqus javascript needs to...
Can we add support for [tpope/vim-repeat](https://github.com/tpope/vim-repeat)?
I am trying to build nested lists where I use different enumerators, for example: ```markdown 1. Something a) something-nested b) something-else-nested 2. Another thing a) another-thing-nested I) Another-thing-deeply nested ```...