Maxim Gonchar
Maxim Gonchar
Ok, no one have asked me, but here we go. The order of split commands in vim matters: `split | vsplit` will cause the following scheme: ``` +--+--+ | |...
There is an option to control the 'ratio of the max width to screen height'. The problem: I'm using laptop, connected to the wide screen monitor. I currently have this...
**What?** A command `Helpmd ` that opens plugin's readme file. Completions provided. It may find it oin `rtp`or use Packer to get list of paths/ **Why?** A lot of new...
I thought I will implement it by myself, but currently I have no time for it. So I just write down the idea in case somebody will like it and...
When after using clever-f, say 'fj' and typing something in insert mode it is not possible to repeat the same search again. Without clever f I would do 'fjiTYPING;.' to...
I was trying to add latex environment to endwise by adding the following code: ``` vim let b:endwise_addition = '\\end{\=submatch(1)}' let b:endwise_addition = 'end' let b:endwise_words = 'begin' let b:endwise_pattern...
Any hashable may be added to a set (OrderedSet). Hashables are sometime iterables (tuple, frozenset, string). As soon as OrderedSet.index treats iterables differently compared to the way list works, it...