Re: Vim with +python support

2014-05-14 Thread Ole Hansen
I used the current stable Windows binary to install Vim 7.4. Both console and gvim have 'VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Aug 10 2013 14:33:40)' in their :ver output. However the gvim version has +python/dyn and +python3/dyn and the console version has -python and -python3. I

imap / inoremap prints Esc instead of leaving insert mode

2014-05-14 Thread kakastrontify debie
Hi all, I tried to remap jj to the Esc key in my vimrc file as following: inoremap jj Esc In insert mode when I press jj I end up with the string Esc printed on screen instead of vim going back to normal mode. same problem with imap, ESC, esc I'm new to vim using a Yakuake terminal on

Re: imap / inoremap prints Esc instead of leaving insert mode

2014-05-14 Thread Matteo Cavalleri
12 set nocompatible Use Vim defaults (much better!) I might be wrong, but I think must be on the first line of your vimrc 10 set encoding=UTF-8 11 set fileencodings=UTF-8 ...and if I remember correctly, it's better to move these up too (just below set nocompatible) -- -- You

Re: imap / inoremap prints Esc instead of leaving insert mode

2014-05-14 Thread kakastrontify debie
Op woensdag 14 mei 2014 12:36:44 UTC+2 schreef Matteo Cavalleri: 12 set nocompatible Use Vim defaults (much better!) I might be wrong, but I think must be on the first line of your vimrc 10 set encoding=UTF-8 11 set fileencodings=UTF-8 ...and if I remember correctly,

Re: Opening large files?

2014-05-14 Thread Ken Takata
Hi Bram, 2014/5/13 Tue 20:12:59 UTC+9 Bram Moolenaar wrote: Ken Takata wrote: 2014/5/13 Tue 3:40:37 UTC+9 Bram Moolenaar wrote: So is the patch now ready to be included, or did you still have a problem to fix? I think it's ready. I don't see any regressions with the patch (at

Re: Vim with +python support

2014-05-14 Thread David Fishburn
On Wed, May 14, 2014 at 2:21 AM, Ole Hansen olehanse...@gmail.com wrote: I used the current stable Windows binary to install Vim 7.4. Both console and gvim have 'VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Aug 10 2013 14:33:40)' in their :ver output. However the gvim version has +python/dyn

Re: Vimdiff, version 7.4 on Windows 7

2014-05-14 Thread Stromek Doe
On Friday, October 11, 2013 7:59:47 AM UTC+2, star...@gmail.com wrote: So change: if sh =~ '\cmd' (fails) To: if sh =~ \cmd (works) This worked for me on Windows 7. -- -- You received this message from the vim_use maillist. Do not top-post! Type your reply below the text you are replying

Re: Vimdiff, version 7.4 on Windows 7

2014-05-14 Thread Ben Fritz
On Wednesday, May 14, 2014 9:46:32 AM UTC-5, Stromek Doe wrote: On Friday, October 11, 2013 7:59:47 AM UTC+2, star...@gmail.com wrote: So change: if sh =~ '\cmd' (fails) To: if sh =~ \cmd (works) This worked for me on Windows 7. That is the WRONG solution, as I pointed out in the

Re: Can't copy or move files with netrw

2014-05-14 Thread Federico Panico
Hi, DrChip. Thanks for asking. :echo executable(mv) That returns a 1. * check your path 'which mv' return /usr/bin/mv * check your shell Currently using zsh. Tried changing it to bash (chsh, logout, login) and still I get the same error. * do you have permission to execute? I have

Re: imap / inoremap prints Esc instead of leaving insert mode

2014-05-14 Thread Matteo Cavalleri
you're welcome :) -- -- You received this message from the vim_use maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups vim_use