Hello, I am using scons inside vim via makeprg, and have an issue with vim not finding files during quickfix. Specifically, say the project root is ~/root and...
122088
Makro Tech
makrotech.com@...
Apr 2, 2011 12:40 am
Hi This is Vignesh with Makro Technologies, Inc. We have been in business for over 10 years and we are one of the Fast 500 National IT staffing and Solution...
122087
Alessandro Antonello
antonello.ale@...
Apr 2, 2011 12:13 am
... Man, you are a genius! Thanks a lot! -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are...
122086
Gary Johnson
garyjohn@...
Apr 1, 2011 11:35 pm
... The :checkpath command may do what you want, if your 'path' is set appropriately. ... will check that your 'path' is correct. If it is, then ... will list...
122085
Tim Chase
vim@...
Apr 1, 2011 11:28 pm
... I don't know of anything pre-existing, but I whipped up this ... fname=matchstr(getline(39;.'),'<!-- #bbinclude "\zs[^"]*\ze" -->')|exec '+,/<!-- end...
122084
Tony Mechelynck
antoine.mechelynck@...
Apr 1, 2011 11:27 pm
... The usual way to set the alternate file name is to switch _away_ from it. If there is another way, I have yet to learn it. Best regards, Tony. -- It is not...
122083
Tim Chase
vim@...
Apr 1, 2011 11:12 pm
... There are several books[1] and websites[2] regarding regular expressions. Popular books: - "Mastering Regular Expressions" (published by O'Reilly) -...
122082
Spiros Bousbouras
spibou@...
Apr 1, 2011 11:00 pm
Is there a way to set the alternate file name by setting some variable or calling a function ? Or is the only way to actually switch to it ? -- You received...
122081
hari.rangarajan@...
Apr 1, 2011 10:51 pm
If you have a cscope database, you can use this plugin: http://www.vim.org/scripts/script.php?script_id=2368 to display file dependencies. Note that the header...
122080
Tim Gray
tgray@...
Apr 1, 2011 10:14 pm
I'm a new user of vim and am currently evaluating it for my uses. I'm coming from BBEdit. One of the features of BBEdit that I've found useful is the ...
122079
Coiby
coibyxqx@...
Apr 1, 2011 10:14 pm
Tim, thanks very much for your detailed reply! I will appreciate it if you recommend some books on such topic. -- View this message in context:...
122078
David Ohlemacher
dohlemacher@...
Apr 1, 2011 7:08 pm
I don't know what your *nix background is, but if you haven't looked at them, check out grep, sed, and/or awk. One reason is that you said "file*s*". With...
... "make -j 2" may works. I tried several times without error. But that's not enough to be 100% sure. "make -j 2 test" does not work. -- Dominique -- You...
122076
Aman Jain
amanjain.nitrkl@...
Apr 1, 2011 5:49 pm
Hi Is there a way to see all the header files included by a c file, lets say a c file contians only one header file ,but that header file includes 10 header...
122075
Ben Fritz
fritzophrenic@...
Apr 1, 2011 4:42 pm
... Or this alternate approach, if you prefer. Instead of marking the lines of interest with special colors, why not fold away all lines so that only the lines...
122074
Ben Fritz
fritzophrenic@...
Apr 1, 2011 4:40 pm
On Apr 1, 9:31 am, Charles Campbell <Charles.E.Campb...@...> ... For that matter, CSS 3.0 is getting increasing support. Probably HTML and CSS syntax...
122073
Charles Campbell
Charles.E.Campbell@...
Apr 1, 2011 2:32 pm
... Hello, May I suggest that you look into what syntax/cpp.vim does to include syntax/c.vim. If there are incompatibilities or unsupported "deprecated"...
122072
ZyX
zyx.vim@...
Apr 1, 2011 2:26 pm
Reply to message «Is it safe to build Vim with "make -j"?», sent 14:43:17 01 April 2011, Friday by Michael Henry: It is not the official answer, but I can...
122071
Robert
sigzero@...
Apr 1, 2011 2:10 pm
HTML5 is "coming". It really just adds some nifty stuff to HTML. How do I use the current HTML syntax file in a new HTML5 syntax file? -- You received this...
122070
Marc Weber
marco-oweber@...
Apr 1, 2011 11:27 am
... VAM even does this for you. Getting url, downloading, unpacking .. this all should be done by scripts. ... Marc Weber -- You received this message from the...
122069
Paul
google01239@...
Apr 1, 2011 11:17 am
Pathogen, because it's easy to use: Put in ~/.vim/autoload/ Just one line in ~/.vimrc It keeps all the files nice and tidy in their own directory. All you have...
122068
Paul
google01239@...
Apr 1, 2011 11:06 am
... How about vim supporting signals, eg. have SIGQUIT invoke a nice :qa! shutdown? I'm not sure if SIGQUIT would be appropriate. -- . -- You received this...
122067
Ben Schmidt
mail_ben_schmidt@...
Apr 1, 2011 11:01 am
... French grammar is pretty regular compared to some languages! ;-) I think the answer is that because error checking depends on the context, it is documented...
122066
Paul
google01239@...
Apr 1, 2011 10:57 am
... 'setlocal equalprg=perltidy39; in ftplugin/perl.vim and you can use perltidy automatically with the = command. -- . -- You received this message from the...
122065
Michael Henry
vim@...
Apr 1, 2011 10:44 am
All, Is it safe to use "make -j" when building vim (either as "make -j 2", for example, or plain "make -j" to build with an "unlimited" number of simultaneous...
122064
Terence Monteiro
terence.placker@...
Apr 1, 2011 10:20 am
... You'll need a ' after the \s*. Depending on whether you want to capture the single quotes: / \(\w92;+\)\s*=\s*39;\(\\'\|[^']\)*39; Regards, Terence. -- You...
122063
Terence Monteiro
terence.placker@...
Apr 1, 2011 10:20 am
Alessandro, On Fri, Apr 1, 2011 at 11:05 AM, Alessandro Antonello < ... This should work: /\(\w\+92;)\s*=\s*\(\(\\'\|[^']\)*92;)' 1. You need to escape the +, (,...
122062
Paul
google01239@...
Apr 1, 2011 10:10 am
Alternatively, the SyntaxMotion script: http://www.vim.org/scripts/script.php?script_id=2965 -- . -- You received this message from the "vim_use" maillist. Do...
122061
EdwardXu
edwardxuhui19847@...
Apr 1, 2011 8:50 am
Hi, guys, I'm using xptemplate to writing C code, i must deal with following code snippet: int foo(int a) { //bla bla } When i finished the first line of that...
122060
Jürgen Krämer
jottkaerr@...
Apr 1, 2011 8:09 am
Hi, ... there are some problems with your regular expression: first, Vim needs a lot of backslashes where Perl or other regexp variants do not. You can fix...