linux terminal vim: use autogenerated servername by default

2015-01-15 Thread Enno
Under Windows, terminal Vim uses an automatically generated servername by default (assuming that Vim has +clientserver). Under Linux, this is disabled by default. Why, and is there a setting to change this? The procedure proposed at

Re: move tabs using mouse in gvim

2015-01-15 Thread Ben Fritz
On Wednesday, January 14, 2015 at 7:55:59 PM UTC-6, Matthew Jones wrote: On Wednesday, December 24, 2014 at 7:55:26 AM UTC-8, kamaraju kusumanchi wrote: Is it possible to move tabs in a gvim window using mouse? Something similar to the way we can move tabs across in chrome and firefox? In

Re: Problem with command on script

2015-01-15 Thread Cesar Romani
On 15/01/2015 03:05 a.m., Paul Isambert wrote: Le jeudi 15 janvier 2015 à 01:08, Cesar Romani a écrit: I'm using vim 7.4.580 on Windows 7. I have the following code to delete a displaced range of lines on a text: -- function! Foobar(num) range exe

Re: conceal and wrapping

2015-01-15 Thread Gary Johnson
On 2015-01-14, Christian Brabandt wrote: On Mi, 14 Jan 2015, Christian Brabandt wrote: Hi Gary! On Mi, 14 Jan 2015, Gary Johnson wrote: Given a line longer than the screen width so that it wraps at the screen edge, is it expected that concealing the first part of a line moves

Re: Problem with command on script

2015-01-15 Thread Paul Isambert
Le jeudi 15 janvier 2015 à 01:08, Cesar Romani a écrit: I'm using vim 7.4.580 on Windows 7. I have the following code to delete a displaced range of lines on a text: -- function! Foobar(num) range exe (a:firstline+a:num).','.(a:lastline+a:num).'d' endfunc com! -range -nargs=1