Re: String concatenation in .vimrc command definition

2010-02-17 Thread Andy Wokula
Am 17.02.2010 16:41, schrieb Brett Stahlman: On Feb 17, 9:24 am, Andrey Zhidenkov wrote: Hello again. I've asked today about 'vim vs subversion'. So I decided to add a keybinding definition into my ~/.vimrc: map :w:!svn commit -m "Update wifidb files from " . `hostname` Andrey, As it stan

Re: String concatenation in .vimrc command definition

2010-02-17 Thread Andrey Zhidenkov
On Wed, Feb 17, 2010 at 07:41:44AM -0800, Brett Stahlman wrote: > > > On Feb 17, 9:24 am, Andrey Zhidenkov > wrote: > > Hello again. > > > > I've asked today about 'vim vs subversion'. So I decided to add a keybinding > > definition into my ~/.vimrc: > > > > map :w:!svn commit -m "Update wifidb

Re: String concatenation in .vimrc command definition

2010-02-17 Thread Brett Stahlman
On Feb 17, 9:24 am, Andrey Zhidenkov wrote: > Hello again. > > I've asked today about 'vim vs subversion'. So I decided to add a keybinding > definition into my ~/.vimrc: > > map :w:!svn commit -m "Update wifidb files from " . `hostname` Andrey, As it stands, the dot operator is going to be pr

String concatenation in .vimrc command definition

2010-02-17 Thread Andrey Zhidenkov
Hello again. I've asked today about 'vim vs subversion'. So I decided to add a keybinding definition into my ~/.vimrc: map :w:!svn commit -m "Update wifidb files from " . `hostname` I want to print a hostname in svn log message, but I got only "Update wifidb files from " string. How can I conc