Spam from ad...@139.com

2012-11-29 Thread John Beckett
Does anyone have an archive of mail which includes the spam that we receive from ad...@139.com? I need to know when that spam started. I kept a few messages, and the earliest I have is 2012-07-09. Does anyone know of an earlier date? Or, can you say when it did NOT occur (that is, you posted to

Re: Subdirectories for help files

2012-11-29 Thread Charles Campbell
Charles Campbell wrote: Marco wrote: Hi, I have plenty of help files in my .vim/doc directory. I'd like to structure it a little more. Apparently simply placing the files in subdirectories is not sufficient. The help tags can not be found. Is there a way to either * add the paths of the

Modifying filename before open

2012-11-29 Thread Marc Jessome
Hello, I often grep -rn and want to easily use the filename:line: output as a filename to vim. Is there any way that I can have vim see main.c:595 and main.c:595: as an equivalent to main.c +595 ? Thanks -- You received this message from the vim_use maillist. Do not top-post! Type your

Re: Modifying filename before open

2012-11-29 Thread Christian Brabandt
On Thu, November 29, 2012 16:26, Marc Jessome wrote: I often grep -rn and want to easily use the filename:line: output as a filename to vim. Is there any way that I can have vim see main.c:595 and main.c:595: as an equivalent to main.c +595 ? I think, this plugin should do what you want:

Re: Modifying filename before open

2012-11-29 Thread Marc Jessome
Excellent, thanks very much Christian! Cheers, Marc On 29/11/12 10:31 AM, Christian Brabandt wrote: On Thu, November 29, 2012 16:26, Marc Jessome wrote: I often grep -rn and want to easily use the filename:line: output as a filename to vim. Is there any way that I can have vim see

Re: VIM v7 and v7.3.46: End of Life and End of Support Dates needed

2012-11-29 Thread Ben Fritz
On Wednesday, November 28, 2012 10:11:52 PM UTC-6, Gary Johnson wrote: On 2012-11-28, rams wrote: Hello, I am looking for End of Life and End of Support dates for: VIM 7 VIM 7.3.46 Can you please share the info for this? I am not an official spokesman for Vim.

Re: Automatically change encoding when opening file

2012-11-29 Thread Ven Tadipatri
On Thu, Nov 15, 2012 at 8:31 AM, Tony Mechelynck antoine.mechely...@gmail.com wrote: If a file in UTF-16le has a BOM (the codepoint U+FEFF at the very beginning of the file, which for UTF-16le means the bytes 0xFF 0xFE), then if you have set Vim to use UTF-8 'encoding' in your vimrc that file

Re: Automatically change encoding when opening file

2012-11-29 Thread Ben Fritz
On Thursday, November 29, 2012 2:41:16 PM UTC-6, vtadipatri wrote: I'm not really that familiar with the different encoding types (UTF-8, UTF-16, etc), but when I came across a strange feff character which I think is related to what you're describing. I open up two files in gedit and

Re: Automatically change encoding when opening file

2012-11-29 Thread Marcin Szamotulski
On 15:41 Thu 29 Nov , Ven Tadipatri wrote: On Thu, Nov 15, 2012 at 8:31 AM, Tony Mechelynck antoine.mechely...@gmail.com wrote: If a file in UTF-16le has a BOM (the codepoint U+FEFF at the very beginning of the file, which for UTF-16le means the bytes 0xFF 0xFE), then if you have

Re: VIM v7 and v7.3.46: End of Life and End of Support Dates needed

2012-11-29 Thread Tony Mechelynck
On 29/11/12 16:55, Ben Fritz wrote: On Wednesday, November 28, 2012 10:11:52 PM UTC-6, Gary Johnson wrote: On 2012-11-28, rams wrote: Hello, I am looking for End of Life and End of Support dates for: VIM 7 VIM 7.3.46 Can you please share the info for this? I am

Re: Automatically change encoding when opening file

2012-11-29 Thread Ben Fritz
On Thursday, November 29, 2012 3:16:33 PM UTC-6, coot_. wrote: feff is the BOM character for UTF-16 encoding. UTF-16 uses 2 bytes to encode a character, but the order of them might differ. This BOM character tells which byte comes first. feff is the BOM character for UTF-8 as well,

Re: VIM v7 and v7.3.46: End of Life and End of Support Dates needed

2012-11-29 Thread Tony Mechelynck
On 29/11/12 23:14, Tony Mechelynck wrote: On 29/11/12 16:55, Ben Fritz wrote: On Wednesday, November 28, 2012 10:11:52 PM UTC-6, Gary Johnson wrote: On 2012-11-28, rams wrote: Hello, I am looking for End of Life and End of Support dates for: VIM7 VIM7.3.46 Can you

Get current executing cmmand in autocmd

2012-11-29 Thread Techlive Zheng
If an autocmd is triggered by executing an ex command, is there any way to know which command it is? -- 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: email plugin

2012-11-29 Thread Michael Hernandez
On Nov 29, 2012, at 6:05 PM, Rostislav Svoboda rostislav.svob...@gmail.com wrote: Is there any good email plugin you can recommend me guys? It seems like there isn't any star plugin for handling emails in vim, in fact google search doesn't return many useful links to this topic. So, I'd like

Indenting Based on Unbalanced Paranthesis

2012-11-29 Thread Danny Gratzer
I am writing an indentation script for a simple language. The language is has very simple constructs and the indentation really only has 3 rules: 1. A comment has goes from a // until a newline, anything in a comment should be ignored. 2. If the line above contains a semi-colon, the indentation

Re: Indenting Based on Unbalanced Paranthesis

2012-11-29 Thread Danny Gratzer
Oh actually 1 more rule 4. If the line above matches let:$, or in:$ where $ is the end of line, indent by 1 more than this line. On Thu, Nov 29, 2012 at 5:24 PM, Danny Gratzer danny.grat...@gmail.comwrote: I am writing an indentation script for a simple language. The language is has very

Re: Indenting Based on Unbalanced Paranthesis

2012-11-29 Thread Danny Gratzer
Excuse me, rule 3. should read: 3. Otherwise, indent to 1 more than the most recent unbalanced ( and to the same level as the last line if all parenthesis are balanced and no other rules apply. On Thu, Nov 29, 2012 at 5:27 PM, Danny Gratzer danny.grat...@gmail.comwrote: Oh actually 1 more

Re: email plugin

2012-11-29 Thread sc
On Thu, Nov 29, 2012 at 06:20:00PM -0500, Michael Hernandez wrote: On Nov 29, 2012, at 6:05 PM, Rostislav Svoboda rostislav.svob...@gmail.com wrote: Is there any good email plugin you can recommend me guys? It seems like there isn't any star plugin for handling emails in vim, in fact

Re: email plugin

2012-11-29 Thread ping
On 11/29/2012 06:20 PM, Michael Hernandez wrote: On Nov 29, 2012, at 6:05 PM, Rostislav Svoboda rostislav.svob...@gmail.com wrote: Is there any good email plugin you can recommend me guys? It seems like there isn't any star plugin for handling emails in vim, in fact google search doesn't

Vim + tmux with mouse support questions

2012-11-29 Thread xiebo212
Hi, I am pretty new for vim and tmux, and exploring right now. I have vim set up on terminal (using putty) with mouse support, but when I moved to tmux. Found a couple of problems. (1) I like quickfix window, use :ccopen to open quickfix window in vim, and I can resize the quickfix window with

Re: Get current executing cmmand in autocmd

2012-11-29 Thread Ben Fritz
On Thursday, November 29, 2012 5:08:30 PM UTC-6, Techlive Zheng wrote: If an autocmd is triggered by executing an ex command, is there any way to know which command it is? As far as I know, no. Except for the QuickFixCmdPre and QuickFixCmdPost autocmds, which match their pattern against the

Re: Indenting Based on Unbalanced Paranthesis

2012-11-29 Thread Benjamin R. Haskell
[Reversed the top-posting, per list preference] On Thu, Nov 29, 2012 at 5:24 PM, Danny Gratzer wrote: I am writing an indentation script for a simple language. The language is has very simple constructs and the indentation really only has 3 rules: 1. A comment has goes from a // until a

Re: Indenting Based on Unbalanced Paranthesis

2012-11-29 Thread Ben Fritz
On Thursday, November 29, 2012 5:24:53 PM UTC-6, Danny Gratzer wrote: I am writing an indentation script for a simple language. The language is has very simple constructs and the indentation really only has 3 rules: 1. A comment has goes from a // until a newline, anything in a comment

Re: Indenting Based on Unbalanced Paranthesis

2012-11-29 Thread Danny Gratzer
Apologizes for the top posting, No indenting exists for this previously, it's a language (currently unnamed) I'm writing as an experiment in functional programming and to learn to parse. I can't think of any other markers really, the syntax for the language is pretty minimalistic, here's a

Re: email plugin

2012-11-29 Thread James Freer
On Thu, 29 Nov 2012, ping wrote: On 11/29/2012 06:20 PM, Michael Hernandez wrote: On Nov 29, 2012, at 6:05 PM, Rostislav Svoboda rostislav.svob...@gmail.com wrote: Is there any good email plugin you can recommend me guys? It seems like there isn't any star plugin for handling emails in

Re: email plugin

2012-11-29 Thread Bee
If you are looking for an email client that can use vim as the editor, I am happy with Sylpheed, Simple and fast. Bill -- 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

Re: email plugin

2012-11-29 Thread Chris Lott
Gmail + Pentadactyl (or Vimperator) works like a charm for me. c -- Chris Lott ch...@chrislott.org -- 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: email plugin

2012-11-29 Thread Marc Weber
mutt, notmutch, sup all can use vim as editor (and maybe some more) I don't know what you expect vim to be. Marc Weber -- 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

Re: email plugin

2012-11-29 Thread Erik Christiansen
On 29.11.12 18:48, ping wrote: like most open-source projects, very nice idea plus great apps, but never good docs/tuturials..(except vim) The mutt documentation is available on the F1 key, and is very detailed and informative. The capabilities of mutt are significant, so acquiring not just

Re: email plugin

2012-11-29 Thread rameo
On Friday, November 30, 2012 12:05:41 AM UTC+1, Bost wrote: Is there any good email plugin you can recommend me guys? It seems like there isn't any star plugin for handling emails in vim, in fact google search doesn't return many useful links to this topic. So, I'd like to hear your tips