Re: Weird extra line in messages after first leaving insert mode

2014-08-05 Thread David Barnett
On further experimentation, I've found that vim apparently always overwrites a blank message: :echomsg '' :echomsg 'Foo' :messages Foo So the overwriting is at least predictable even if it's surprising. But the issue of having a blank message written in the first place when you enter and l

Re: ssh and star register?

2014-08-05 Thread Bee
@Tony, thank you for the autocmd hint. This time it is working as I expect, local terminal and ssh. autocmd VimEnter * \ let @- = @* | silent! let @* = 'star' \| if @* == 'star' | let @* = @- \| set cb^=unnamed cb^=unnamedplus cb+=autoselect \| endif -- -- You received this message from the

Re: vim 7.4: pasting is very slow on HP UX machine.

2014-08-05 Thread Sarath Addanki
On Tuesday, 1 July 2014 14:23:22 UTC-4, Christian Brabandt wrote: > Hi > > > > On Di, 01 Jul 2014, KKde wrote: > > > > > > > > > > Since you already recompiled your Vim, would it be hard for you to > > > > profile it? > > > > > > > > That might give us a clue, what is going on. > > >

Re: Bundling jar into a vim plugin

2014-08-05 Thread Justin M. Keyes
On Thu, Jul 24, 2014 at 1:09 AM, Pankaj Gupta wrote: > Hi, > > I'm creating a scala jump to definition plugin. The vim side of plugin is > really simple, a few lines of python that call a local service over http. The > real crux is the java service that creates and maintains an index. I want to