vimwiki
vimwiki copied to clipboard
Personal Wiki for Vim
`VimwikiGenerateLinks` is useful for smaller directories, but less so for the root or a huge nested structure. I'd like to be able to use it to - Make an index...
Prior to submitting a new issue make sure to complete these steps: - [x] Checkout the `dev` branch and confirm the issue is present there as well. The `dev` branch...
### Steps to reproduce - Place cursor on a list item - Press `o`, type "Test," and press `Esc`. - Press `.` - Expected behavior: New list item with "Test."...
Prior to submitting a new issue make sure to complete these steps: - [x] Include the VimWiki settings from your `.vimrc` ``` let g:vimwiki_conceal_pre = 1 let g:vimwiki_valid_html_tags = 'b,i,s,u,sub,sup,kbd,br,hr,span'...
I think a recent change to HTML blockquote conversion on `dev` (https://github.com/vimwiki/vimwiki/commit/dc63a5dacc97d957f35995b1944a3a6a26647d85) may have caused a regression when converting a file that contains a list element that hard wraps to...
``` Plug 'vimwiki/vimwiki' let g:vimwiki_list = [ \ {'path': '~/OneDrive/vimwiki', 'list_margin': 2}, \ {'path': '~/vimwiki', 'list_margin': 2} ] let g:vimwiki_ext2syntax = {} let g:vimwiki_folding = 'syntax' autocmd FileType vimwiki setlocal...
I have some latex files stored and linked to in my wiki. Before https://github.com/vimwiki/vimwiki/commit/d7ec12645a0460a7d200279c52915e6e080e9869 I could omit the `file:` part of a link to have vim open the file directly....
The behavior between ordered and unordered lists in Markdown when using hard line wraps at 80 characters is inconsistent (that is, using `set textwidth=80`). I believe the behavior for numbered...
I have just upgraded all my vim plugins on two systems: FreeBSD 13.2 (vim 9.0.1671) and Ubuntu 18.04.6 LTS (vim 8.0.3741) On both systems, the following error is being thrown...
As others have noted, the IndentLine plugin changes the value of `concealcursor` in a way that conflicts with the expected behavior of vimwiki. This can be turned off completely from...