Re: syntax highlighting for sql: "Capability" is keyword

2015-09-14 Thread David Fishburn
> > > I'm coding for MS Access with SQL-92 support enabled. However, I > posted the question not so much about my specific situation, but > rather, why a simple web search seems to unearth no evidence of > Capability being a keyword in any dialect. Though it's not of direct > relevance to the

Re: [ANN] Plugin: VimCrypt: A small framework for encryption and decryption in vim. (supports openssl and gpg)

2015-09-14 Thread Justin M. Keyes
On Sun, Sep 13, 2015 at 6:26 AM, mwnx wrote: > Hello vim_use, > > I created a plugin called VimCrypt to enable seamless reading and writing of > encrypted files in vim, which I find useful for password lists and other > sensitive information. Right now, it supports *openssl* and

Re: How to use :help?

2015-09-14 Thread Ben Fritz
On Monday, September 14, 2015 at 3:41:13 AM UTC-5, Elimar Riesebieter wrote: > > > > Also the help has the advantage, of belonging to your particular vim > > version (well, usually), so that obsolete topics or topics that have > > been added later won't turn up. > > > > Therefore, it is

Page breaks in vimrc

2015-09-14 Thread Bob Hyam
Can anyone tell me how I put page breaks (for printouts) into my .vimrc file so as they don't affect vim startup. Thanks, Bob -- -- 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: How to use :help?

2015-09-14 Thread Elimar Riesebieter
* Ben Fritz [2015-09-14 08:04 -0700]: > On Monday, September 14, 2015 at 3:41:13 AM UTC-5, Elimar Riesebieter wrote: [...]> > > 1) Options generally are enclosed in single parenthesis. So you would > > [...] > > > 20) compiled extra features always start with "+" so :h

Re: Page breaks in vimrc

2015-09-14 Thread Benji Fisher
On Mon, Sep 14, 2015 at 12:41 PM, Bob Hyam wrote: > Can anyone tell me how I put page breaks (for printouts) into my .vimrc > file so as they don't affect vim startup. > Thanks, Bob > Not a perfect solution, but you can add lines like " ^L where you want page breaks.

Re: [ANN] Plugin: VimCrypt: A small framework for encryption and decryption in vim. (supports openssl and gpg)

2015-09-14 Thread mwnx
On Mon, Sep 14, 2015 at 08:28:18AM -0400, Justin M. Keyes wrote: > Other than support SSL, how does it compare to > https://github.com/jamessan/vim-gnupg ? > > Justin M. Keyes Well, before coding this plugin, I did take a look at vim-gnupg, but it just seemed to be trying to do too much.

Re: How to use :help?

2015-09-14 Thread Niels Kobschaetzki
On 13/09 15:01, Christian Brabandt wrote: Hi Niels! On So, 13 Sep 2015, Niels Kobschaetzki wrote: Hi, I read quite often "just use the help" or recently on the list "don't use google, use :help". But how do I "use" it? When I want to know if something is possible in vim, I never figured out

Re: How to use :help?

2015-09-14 Thread Elimar Riesebieter
* Christian Brabandt [2015-09-13 15:01 +0200]: > Hi Niels! > > On So, 13 Sep 2015, Niels Kobschaetzki wrote: > > > Hi, > > > > I read quite often "just use the help" or recently on the list "don't > > use google, use :help". But how do I "use" it? When I want to know if >

Re: Problem with simple regex

2015-09-14 Thread Niels Kobschaetzki
On 14/09 10:52, Niels Kobschaetzki wrote: Hi, I have a problem with a substitution with a simple regex. I want to change occurrences of page numbers and years that are using a hyphen, to an en-dash. Something like "308-309" should become "308--309". My best try so far is: :s/\d-\d/\1--\2

Re: Problem with simple regex

2015-09-14 Thread Niels Kobschaetzki
On 14/09 11:04, Christian Brabandt wrote: Hi Niels! On Mo, 14 Sep 2015, Niels Kobschaetzki wrote: Hi, I have a problem with a substitution with a simple regex. I want to change occurrences of page numbers and years that are using a hyphen, to an en-dash. Something like "308-309" should

Problem with simple regex

2015-09-14 Thread Niels Kobschaetzki
Hi, I have a problem with a substitution with a simple regex. I want to change occurrences of page numbers and years that are using a hyphen, to an en-dash. Something like "308-309" should become "308--309". My best try so far is: :s/\d-\d/\1--\2 But this creates 30--09. My understanding is

Re: Problem with simple regex

2015-09-14 Thread Christian Brabandt
Hi Niels! On Mo, 14 Sep 2015, Niels Kobschaetzki wrote: > Hi, > > I have a problem with a substitution with a simple regex. I want to > change occurrences of page numbers and years that are using a hyphen, to > an en-dash. Something like "308-309" should become "308--309". > My best try so far