... OCD - Obsessive-Compulsive Disorder - an anxiety disorder characterized by intrusive thoughts that produce uneasiness, apprehension, fear, or worry; by...
137808
Gary Johnson
garyjohn@...
May 23, 2013 5:51 pm
... The 'formatprg39; option does not do automatic formatting unless the 'a' flag of 'formatoptions' is set, which I would not recommend in this case. Further,...
137809
Rob Hoelz
rdhoelz@...
May 23, 2013 7:21 pm
Hi all, I'm working on bringing the Perl runtime files up to speed for the upcoming 7.4 release, but I've encountered an interesting bug and seek the...
137810
Rob Hoelz
rdhoelz@...
May 23, 2013 7:49 pm
... Here's a post I made on the general mailing list: https://groups.google.com/forum/?fromgroups#!topic/vim_use/QU7mW9RWnLc If you comment out the set...
137811
Bram Moolenaar
Bram@...
May 23, 2013 9:04 pm
... I'm only testing with the actual syntax highlighting. If you see a particular pattern that's not working, please make an example in this form: echo...
137812
Sam Roberts
vieuxtech@...
May 23, 2013 9:46 pm
Hi, using node, mocha, and jshint, when I run my unit tests with make, I can get output from any of the above. All with different error formats. Note that I...
137813
Ben Fritz
fritzophrenic@...
May 24, 2013 1:30 am
... I've wanted for a while to get Perl folding to work based on open-close brace only, instead of relying on indent. Since you are already messing with the...
137814
Ben Fritz
fritzophrenic@...
May 24, 2013 1:33 am
... Maybe instead you could use :caddfile, :caddbuffer, or :caddexpr to build a list using one format at a time? -- -- You received this message from the...
137815
Donie Leigh
donie.leigh@...
May 24, 2013 3:33 am
@Marc Thanks for your recommendation, it seems VAM gives consideration to both statibility and radicalism. I will give it try. ... -- -- You received this...
137816
Sam Roberts
vieuxtech@...
May 24, 2013 4:52 am
... Can you give me more of a hint? Somehow, I'd have to create a macro that ran make, then called compiler X, caddfile, compiler Y, caddfile, etc....? Sam -- ...
137817
Rob Hoelz
rob@...
May 24, 2013 7:04 am
... It's working for the most part; the only problem as of now is that attributes mess things up (as seen in my example). Also, the current rules expect the...
137818
Rostislav Svoboda
rostislav.svoboda@...
May 24, 2013 8:43 am
... Hahaha :) ... nice weekend to everyone :) -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you...
137819
Peng Yu
pengyu.ut@...
May 24, 2013 9:45 am
Hi, When I open help by ":help", it will add a new window for help. Is there a way to replace the current window with help? Thanks. Regards, Peng -- -- You...
137820
Willy Gfn
w.goiffon@...
May 24, 2013 10:46 am
... Hi ! I don't thinks it's possible, as the help window is a specific window. Anyway, you can get the help window to fit the whole page by focusing it and...
137821
Phil Dobbin
phildobbin@...
May 24, 2013 10:59 am
Hi, all. Is there a way to write out to file or buffer the error message that comes up bottom left above the command line when one of the installed plugins...
137822
Ben Fritz
fritzophrenic@...
May 24, 2013 11:02 am
... I don't have a specific example, but yes, that's what I had in mind. Or better, a function called by a command. When I made the suggestion, I thought you...
137823
Yukihiro Nakadaira
yukihiro.nakadaira@...
May 24, 2013 11:08 am
... -- Yukihiro Nakadaira - yukihiro.nakadaira@... -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below...
137824
David Fishburn
dfishburn.vim@...
May 24, 2013 12:03 pm
... That will put that content (all messages, not just errors) into your "a register. So you can paste it into a buffer with "ap. ... You can also view the...
137825
Gary Johnson
garyjohn@...
May 24, 2013 2:57 pm
... Regards, Gary -- -- 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...
137826
Tim Chase
vim@...
May 24, 2013 3:08 pm
... This has unfortunate side-effects if you have multiple windows open. Yukihiro's solution using ":set buftype=help" is the closest I've seen to solving the...
137827
Gary Johnson
garyjohn@...
May 24, 2013 3:19 pm
... Good point. I often use that when opening a new vim instance just to read help. I wasn't thinking about the multiple window case. Regards, Gary -- -- You...
137828
Tim Chase
vim@...
May 24, 2013 3:31 pm
... And my intent was not to discredit your answer either, since I too do :help/:only far more than I've ever twiddled the 'buftype39;. It just does something...
Peng, ... I have this mapping in my vimrc: " Open help in a separate tab with <F1> noremap <F1> :<C-U>tab help<CR> This way I can just hit <F1> for full-screen...
137831
Gary Johnson
garyjohn@...
May 24, 2013 7:29 pm
I think I know the answer to this--no--but I wanted to find out if I was missing something. I've been experimenting with hiding the contents of the style ...
137832
KKde
khekadestroyer@...
May 24, 2013 9:34 pm
Hi, Is anyone using xptemplate plugin? If yes anyone has problem with snips for perl filetype? when I trigger any snippet defined for perl I get the below...
137833
KKde
khekadestroyer@...
May 24, 2013 10:23 pm
... After setting verbose > 13, I found the issue. code is having issue at this point let indentkeysList = split( &indentkeys, ',' ) call filter(...
137834
Rob Hoelz
rdhoelz@...
May 24, 2013 10:51 pm
... I've fixed this; after diving into syntax.c for a little bit, I discovered that an empty match group following attributes would fix it. I would like to...
137835
rudrab
rudra.banerjee@...
12:03 am
Hello friends, for a continued line, say, in C, void some_function(argument1, more_arg) is the natural behavior of vim (with my current vimrc). I want it to be...
137836
Ben Fritz
fritzophrenic@...
12:20 am
... Try turning on filetype-based indentation. Near the top of your .vimrc, put: filetype indent on or filetype indent plugin on ...