Re: Add milliseconds to strftime()

2015-04-24 Thread Paul Isambert
Le vendredi 24 avril 2015 à 08:02, av a écrit: I'd like to know if it is possible to get the milliseconds() in this expression for example: echo strftime(%Y-%m-%d_%H:%M:%S) Given that “strftime()” is based on the C function, and since there is no mention of milliseconds in “man strftime”, I

Re: positive lookbehind

2015-04-24 Thread Claus Atzenbeck
On Thu, 23 Apr 2015 at 11:06pm -0700, av wrote: Instead of positive look behind, you could use \zs to define the location you want to start matching. Thanks, Alexandre. Yes, I know that \zs is the better choice for simplicity and performance. I would prefer it over positive lookbehinds; I

Re: Add milliseconds to strftime()

2015-04-24 Thread John Little
On Friday, April 24, 2015 at 6:02:04 PM UTC+12, av wrote: I'd like to know if it is possible to get the milliseconds() in this expression for example: echo strftime(%Y-%m-%d_%H:%M:%S) As Paul Isambert says, vim strftime is based on the C function, which uses a struct tm that has no field

Re: Fedora 22 and Vim

2015-04-24 Thread Elimar Riesebieter
* Kevin Tough ke...@toughlife.org [2015-04-23 17:46 +0200]: Hi Folks, I've installed Fedora 22 on one of my notebooks. The syntax highlighting in Fedora 22 is terrible. The new colors are very pastel like, and not at all to my liking. Would someone be able to explain how I can retain the

RE: Cannot log into my vim account.

2015-04-24 Thread John Beckett
I cannot log into my vim account (http://www.vim.org/account/profile.php?user_id=34258) and there is no way to reset the password. It says to ask Bram to reset my password. You can email me as Bram might be a bit busy. John -- -- You received this message from the vim_use maillist. Do not

Re: Gvim save session dialog

2015-04-24 Thread av
Le mardi 21 avril 2015 13:51:17 UTC+2, av a écrit : Hi Jürgen, Thanks it works! I will add a mapping to replace the toolbar. Best regards / Bien cordialement Alexandre 2015-04-21 13:38 GMT+02:00 Jürgen Krämer jottka...@googlemail.com: Hi, av schrieb am 21.04.2015 um

Re: Build amenu from Funcref

2015-04-24 Thread Ni Va
On Thursday, April 23, 2015 at 3:43:43 PM UTC+1, Ben Fritz wrote: On Thursday, April 23, 2015 at 4:42:40 AM UTC-5, Ni Va wrote: Even if I replace call by exe, the func is not called by pressing button on my toolbar's menu. STOP and think a minute. You *cannot* replace call with exe

Re: autocmd BufEnter * :set selection=exclusive

2015-04-24 Thread toothpik
On Fri, Apr 24, 2015 at 10:29:00PM +, Paul wrote: Christian Brabandt cblists at 256bit.org writes: Check with :verbose set selection? what caused the change of the selection. If a plugin is the culprit contact the plugin author. He should fix it. It shows that netrw is the last

Re: autocmd BufEnter * :set selection=exclusive

2015-04-24 Thread Paul
Christian Brabandt cblists at 256bit.org writes: Check with :verbose set selection? what caused the change of the selection. If a plugin is the culprit contact the plugin author. He should fix it. It shows that netrw is the last to change the selection option. However, the author confirmed

Add milliseconds to strftime()

2015-04-24 Thread av
Hi, I'd like to know if it is possible to get the milliseconds() in this expression for example: echo strftime(%Y-%m-%d_%H:%M:%S) Thanks, Alexandre -- -- 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

Re: positive lookbehind

2015-04-24 Thread av
Le jeudi 23 avril 2015 13:46:03 UTC+2, Claus Atzenbeck a écrit : On Thu, 23 Apr 2015 at 2:21pm +0300, LCD 47 wrote: Because the anchor is not inside the lookbehind group, thus it isn't optional. Since the lookbehind group is matched with zero width, you're effectively asking Vim to