RE: Spam from ad...@139.com

2012-12-20 Thread John Beckett
I have no idea why, but it appears that the spam from ad...@139.com to anyone who posts to vim_use has stopped. As I mentioned, I have emailed everyone who receives vim_use asking about the problem (in batches of 60 at a time). Thanks to those who responded. I unsubscribed 60 members since some of

Re: Spam from ad...@139.com

2012-12-20 Thread Phil Dobbin
On 12/20/2012 08:02 AM, John Beckett wrote: I have no idea why, but it appears that the spam from ad...@139.com to anyone who posts to vim_use has stopped. As I mentioned, I have emailed everyone who receives vim_use asking about the problem (in batches of 60 at a time). Thanks to those who

VIM Python interface fails with segfault on Windows

2012-12-20 Thread David Halter
In some Windows (not all) installations the following VIM (vim.exe **and** gvim) command fails with a segfault: :python print type(sys.stdout) It is discussed here: https://github.com/davidhalter/jedi-vim/issues/27#issuecomment-11572332 Is there anyone who knows why this is happening? I think

Re: vim: conqueterm : truncated lines

2012-12-20 Thread ping
On 12/20/2012 12:08 PM, ping wrote: hi nico and other vim conquetermers: I found this a (relatively) big issue: say if you have your capture of output from a command you issued to your remote machine from within conqterm, the big advantage of using conqueterm is the ability to leverage

Re: vim: conqueterm : truncated lines

2012-12-20 Thread ping
On 12/20/2012 12:11 PM, ping wrote: On 12/20/2012 12:08 PM, ping wrote: hi nico and other vim conquetermers: I found this a (relatively) big issue: say if you have your capture of output from a command you issued to your remote machine from within conqterm, the big advantage of using

Re: Spam from ad...@139.com

2012-12-20 Thread Fredrik Andersson
On Thu, Dec 20, 2012 at 9:02 AM, John Beckett johnb.beck...@gmail.comwrote: I have no idea why, but it appears that the spam from ad...@139.com to anyone who posts to vim_use has stopped. As I mentioned, I have emailed everyone who receives vim_use asking about the problem (in batches of 60

vim: conqueterm : truncated lines

2012-12-20 Thread ping
hi nico and other vim conquetermers: I found this a (relatively) big issue: say if you have your capture of output from a command you issued to your remote machine from within conqterm, the big advantage of using conqueterm is the ability to leverage the existing vim search knowledge you

Re: I loose Syntax Colors when switching between Buffers

2012-12-20 Thread analogsix
My .gvimrc resource file only contains a few custom modifications like: set ... set guifont=... highlight Normal guibg=black colorscheme slate noremap ... I believe I have the default automatic filetype and syntax coloring VIM configuration settings, since there are no syntax-relevant commands

Re: I loose Syntax Colors when switching between Buffers

2012-12-20 Thread Gary Johnson
On 2012-12-20, analogsix wrote: My .gvimrc resource file only contains a few custom modifications like: set ... set guifont=... highlight Normal guibg=black colorscheme slate noremap ... I believe I have the default automatic filetype and syntax coloring VIM configuration settings,

Re: I loose Syntax Colors when switching between Buffers

2012-12-20 Thread analogsix
result of running that command is: filetype= You hit the nail on the head. Namely, when the buffer(s) are first loaded onto gVIM, the filetype(s) aren't recognized (as we can see the 'filetype' option is set to blank). As a quick fix to get gVIM to properly load and recognize my *.sv files,

Re: VIM Python interface fails with segfault on Windows

2012-12-20 Thread David Fishburn
Can you supply your output from :ver. -- 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

Re: I loose Syntax Colors when switching between Buffers

2012-12-20 Thread Gary Johnson
On 2012-12-20, analogsix wrote: result of running that command is: filetype= You hit the nail on the head. Namely, when the buffer(s) are first loaded onto gVIM, the filetype(s) aren't recognized (as we can see the 'filetype' option is set to blank). As a quick fix to get gVIM to

Reload Buffer

2012-12-20 Thread stillLearningVim
Is there a way to reload the vimrc (and other files), so that the changes in the vimrc take immediate effect. :e doesn't seem to do the trick. I'm editing my vimrc a lot, and I'm hoping there is an easier way than constantly closing and reopening everything. Any help and suggestions are

Re:Re: I loose Syntax Colors when switching between Buffers

2012-12-20 Thread 李季
I encounter the same problem. At 2012-12-21 03:23:10,analogsix adi...@gmail.com wrote: result of running that command is: filetype= You hit the nail on the head. Namely, when the buffer(s) are first loaded onto gVIM, the filetype(s) aren't recognized (as we can see the 'filetype' option is set

Re: Reload Buffer

2012-12-20 Thread Niels Kobschätzki
On 21 Dec 2012, at 6:52, stillLearningVim wrote: Is there a way to reload the vimrc (and other files), so that the changes in the vimrc take immediate effect. :e doesn't seem to do the trick. :source PATH_TO_FILE i.e.: :source ~/.vimrc Niels -- You received this message from the vim_use

Re: Reload Buffer

2012-12-20 Thread Nicolas Dermine
On 21 Dec 2012 07:16, Niels Kobschätzki ni...@kobschaetzki.net wrote: On 21 Dec 2012, at 6:52, stillLearningVim wrote: Is there a way to reload the vimrc (and other files), so that the changes in the vimrc take immediate effect. :e doesn't seem to do the trick. :source PATH_TO_FILE i.e.: