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

2012-12-02 Thread John Beckett
This is an updated outline of the vim_use spam problem. Following some email exchanges, I am trying a few things to see if I can find a solution and may have more updates. The following uses -at- instead of @ so the Google Groups web interface will not hide the email addresses. It appears that

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

2012-12-02 Thread Tony Mechelynck
On 02/12/12 10:55, John Beckett wrote: This is an updated outline of the vim_use spam problem. Following some email exchanges, I am trying a few things to see if I can find a solution and may have more updates. The following uses -at- instead of @ so the Google Groups web interface will not

Re: email plugin

2012-12-02 Thread ping
On 11/30/2012 1:50 AM, Erik Christiansen wrote: My personal software survival notes now amount to several hundred pages. They avoid the need to learn stuff several times over - the effort of doing it once is enough. great. Maybe you can publish those valuable notes as books so others might

Re: how can you delete every line between two phrases?

2012-12-02 Thread Tim Chase
On 12/02/12 20:15, Jiaxing Wang wrote: In :g/how are you?/.;/:-)/d, Is '/how are you?/.;/:-)/' the pattern in :[range]g[lobal]/{pattern}/[cmd]? Would you mind explaining this pattern a little? I don't quite understand this, thanks. Using your template of :[range]global]/{pattern}/[cmd]

Re: how can you delete every line between two phrases?

2012-12-02 Thread Jiaxing Wang
On Sat 17 Nov 2012 12:00:38 PM CST, Tim Chase wrote: On 11/16/12 21:22, Tony Mechelynck wrote: The above implements a linewise deletion. For characterwise, you can use :%s/how are you?\zs\_.*\ze:-)//e Notes: - If there are several matching pairs, this subsitute will remove from the

Re: how can you delete every line between two phrases?

2012-12-02 Thread stosss
On Sun, Dec 2, 2012 at 9:39 PM, Tim Chase v...@tim.thechases.com wrote: On 12/02/12 20:15, Jiaxing Wang wrote: In :g/how are you?/.;/:-)/d, Is '/how are you?/.;/:-)/' the pattern in :[range]g[lobal]/{pattern}/[cmd]? Would you mind explaining this pattern a little? I don't quite understand

Re: how can you delete every line between two phrases?

2012-12-02 Thread Tim Chase
On 12/02/12 20:46, stosss wrote: On Sun, Dec 2, 2012 at 9:39 PM, Tim Chase v...@tim.thechases.com wrote: On 12/02/12 20:15, Jiaxing Wang wrote: In :g/how are you?/.;/:-)/d, Is '/how are you?/.;/:-)/' the pattern in :[range]g[lobal]/{pattern}/[cmd]? Would you mind explaining this pattern a