Behind the Brain

Results 9 comments of Behind the Brain

You said multiple repeating events can be added in visual mode, but perhaps I'm missing something, for example: in month mode ctrl-V on a Thursday j down to select 3...

Thanks. I copied your example on dev, with nothing other than `let g:vimwiki_list = [{'path': '~/vimwiki/', 'maxhi': 1}]` in `.vimrc` -- better to simplify it. What you suggest does work,...

Thanks -- good to know it's expected to mis-behave. I'll take a week to learn vimscript, fix it, and get a PR going. I've read the relevant lines of code...

Thanks -- happy to be here! Ok, so I pinned down the issue in the code. `path.vim` has a function `relpath` which is a bit ugly (sorry). It also had...

And the patch for both bugs! ```diff diff --git a/autoload/vimwiki/html.vim b/autoload/vimwiki/html.vim index a31b327..0c64574 100644 --- a/autoload/vimwiki/html.vim +++ b/autoload/vimwiki/html.vim @@ -476,7 +476,7 @@ function! s:tag_wikiincl(value) abort let descr = matchstr(str, s:incl_match_arg(1))...

This patch fixes both #354 and #581 completely (the one-liner in `html.vim`)

#416 and #478 relevant here too

Was finally able to go back and deal with the `path.vim` bug more deeply. The HTML image path fix above was already good. Both of these bugs are still present...

Just providing another simpler snippet, plus some extra information on this one. ```python3 #!/usr/bin/ipython3 # -*- coding: utf-8 -*- from typing import Generator def fib() -> Generator[int, None, None]: a,...