Maxim Kim

Results 279 comments of Maxim Kim

![vim-lens-fix](https://user-images.githubusercontent.com/234774/78580347-f3169080-783a-11ea-921c-051149d6bdba.gif)

> to make current + neighbours big and the rest tiny Ok, looks like I missed the point there. Indeed, it doesn't solve #19

check if this fixes your issue https://github.com/camspiers/lens.vim/pull/25#issuecomment-609892129

Not clear what should happen with edge cases, like 1. what if there are 2 windows? 2. what if there are 2 horizontal windows? 3. what if there are 3...

I have fixed it with adding following lines to `lens#run` function ``` setlocal winfixheight setlocal winfixwidth wincmd = setlocal nowinfixheight setlocal nowinfixwidth ``` I can create a pull request...

> When using AsciiDoctor-BibTex, citations are not concealed. Nobody did this, so yes they are not concealed. > Maybe it could be possible to go to the referenced file. Probably,...

Huh, I usually do lists on the next line after `a|` so have never experienced it. Not sure how difficult it would be to fix :)

``` *bold text _now bold+italic goes all the way till here_ now bold again and it ends here* ```

Probably would be impossible to do it right: ``` __ italic text is not italic because of newline__ ``` shouldn't be italic but it would with my test implementation. Even...

``` syn region asciidoctorBold matchgroup=Conceal start=/\m\*\*\ze./ end=/\*\*/ contains=@Spell concealends " override bold if it was multilined with empty rows between syn match asciidoctorNonBold /\*\*.*[^*]\{2}\s*\ze\n\n\+/ contains=@Spell syn region asciidoctorItalic matchgroup=Conceal start=/\m__\ze./...