Re: Vim highligh not working properly with different colorschemes

2017-01-06 Thread h_east
Hi Philip, 2017-1-7(Sat) 12:58:20 UTC+9 Philip Stefanov: > Hello all, > I have following config in .vimrc > > " Show trailing whitespace and spaces before a tab > highlight ExtraWhitespace ctermbg=red > match ExtraWhitespace /\s\+$\| \+\ze\t/ > > colorscheme desert > > This is working fine wit

Re: perl vs python bindings for vim and tab page object access

2017-01-06 Thread Arif Khokar
On 01/06/2017 01:41 AM, Nikolay Aleksandrovich Pavlov wrote: 2017-01-06 5:56 GMT+03:00 Arif Khokar : [I sent this to the vim_dev list earlier, but didn't get a response] After looking through the documentation for if_perl and if_pyth, I noticed that the python bindings had the ability to query

Re: perl vs python bindings for vim and tab page object access

2017-01-06 Thread Arif Khokar
On 01/06/2017 02:56 PM, BPJ wrote: It would be reasonable if vim passed arrays to perl as anonymous references and perl had to pass arrays to vim as references. After all passing multiple arrays or hashes to subroutines already requires references in perl, as does nested data structures. It app

Re: perl vs python bindings for vim and tab page object access

2017-01-06 Thread Arif Khokar
On 01/06/2017 07:20 AM, LCD 47 wrote: On a side note: if_perl doesn't allow variable bindings the way if_pyth does. For this reason passing non-trivial data structures back and forth between Vim and Perl is often more complicated than the rest of the code combined. A while ago I looked int

Vim highligh not working properly with different colorschemes

2017-01-06 Thread Philip Stefanov
Hello all, I have following config in .vimrc " Show trailing whitespace and spaces before a tab highlight ExtraWhitespace ctermbg=red match ExtraWhitespace /\s\+$\| \+\ze\t/ colorscheme desert This is working fine with default and evening colorscheme but not with desert with is my favorite :) H

Re: perl vs python bindings for vim and tab page object access

2017-01-06 Thread BPJ
It would be reasonable if vim passed arrays to perl as anonymous references and perl had to pass arrays to vim as references. After all passing multiple arrays or hashes to subroutines already requires references in perl, as does nested data structures. fre 6 jan. 2017 kl. 13:21 skrev LCD 47 : >

Re: How to do block pasting?

2017-01-06 Thread Ken Takata
Hi hiwa, 2017年1月4日水曜日 7時54分38秒 UTC+9 hiwa: > Oh Ben, you are right. > > This morning I tried to do THE same task by using ONLY vim key commands like > [h][j][k][l] for cursor movement, then I got the perfect desired result i.e. > a vertical pasting. The lesson I may have learned is "don't use m

Issue with using gvim system() and fzy

2017-01-06 Thread justrajdeep
Hi experts Having an issue while doing a system() call with fzy(https://github.com/Dkendal/fzy-vim)from inside gvim Code snippet silent let output = system("ag -l -g '' --nocolor | fzy") Decho(1) Decho (output) Decho(2) Decho(3) The output is 1 Failed to open /dev/tty^J

Re: perl vs python bindings for vim and tab page object access

2017-01-06 Thread LCD 47
On 6 January 2017, Nikolay Aleksandrovich Pavlov wrote: > 2017-01-06 5:56 GMT+03:00 Arif Khokar : > > [I sent this to the vim_dev list earlier, but didn't get a response] > > > > After looking through the documentation for if_perl and if_pyth, > > I noticed that the python bindings had the ability