Hello,
I'm working my way through the 20 minute Ruby intro on the Ruby page. As I type Textmate is capitalizing All the keywords and the words at the beginning of each sentence. When I cut and paste code from the webpage it's not capitalized. Also, if I backspace and retype the characters they remain lower case.
Is there a way to limit capitalization to only the keywords I've chosen? I don't care to have every else, elsif, etc., capitalized.
Thanks for the help,
Scott
A man who limits his interests limits his life.
-- Vincent Price
Hi, I'm having trouble getting some of the more complex Git bundle tools to
work. For example, when I try to merge, it does
http://img691.imageshack.us/i/picture3apw.png/
I suspect my problem is with my ruby version, I'm on OSX 10.5.6, and using
rvm to manage my ruby version, with the shell variable TM_RUBY set (this has
resolved all of my previous issues with rvm and textmate)
I followed the Git.tmbundle installation instructions at
http://github.com/jcf/git-tmbundle, installing it in ~/Library/Application\
Support/TextMate/Bundles
I followed these instructions
http://gnuu.org/2009/05/25/getting-gittmbundle-working-with-ruby19/ but the
svn repo had moved, so instead I did
$ svn co http://svn.textmate.org/trunk/Support/
My TM_GIT is set correctly, and simpler commands like Browse Annotated File
are working.
Any help/suggestions would be appreciated.
-Josh
PS - Full text of the error:
/Users/joshuacheek/Library/Application
Support/TextMate/Support/lib/ui.rb:237:in `to_plist': An object in the
argument tree could not be converted (ArgumentError) from
/Users/joshuacheek/Library/Application
Support/TextMate/Support/lib/ui.rb:237:in `request_item' from
/Users/joshuacheek/Library/Application
Support/TextMate/Bundles/Git.tmbundle/Support/tmvc/../lib/ui.rb:9:in
`request_item_with_force_pick' from /Users/joshuacheek/Library/Application
Support/TextMate/Bundles/Git.tmbundle/Support/tmvc/../app/controllers/branch_controller.rb:71:in
`merge' from /Users/joshuacheek/Library/Application
Support/TextMate/Bundles/Git.tmbundle/Support/tmvc/lib/application_controller.rb:105:in
`block in call' from /Users/joshuacheek/Library/Application
Support/TextMate/Bundles/Git.tmbundle/Support/tmvc/lib/application_controller.rb:94:in
`with_filters' from /Users/joshuacheek/Library/Application
Support/TextMate/Bundles/Git.tmbundle/Support/tmvc/lib/application_controller.rb:105:in
`call' from /Users/joshuacheek/Library/Application
Support/TextMate/Bundles/Git.tmbundle/Support/tmvc/lib/application_controller.rb:112:in
`call' from /Users/joshuacheek/Library/Application
Support/TextMate/Bundles/Git.tmbundle/Support/tmvc/tmvc.rb:56:in
`dispatch_normal' from /Users/joshuacheek/Library/Application
Support/TextMate/Bundles/Git.tmbundle/Support/tmvc/tmvc.rb:74:in `dispatch'
from /Users/joshuacheek/Library/Application
Support/TextMate/Bundles/Git.tmbundle/Support/tmvc/tmvc.rb:96:in `dispatch'
from /tmp/temp_textmate.FkobtG:4:in `'
I'm trying to compile a C++ source file that includes the following file:
#include "public.sdk/source/vst2.x/audioeffectx.h"
When I try to compile, I get the following error:
In file included from
/Users/martin/Desktop/vstsdk2.4/public.sdk/samples/vst2.x/again/source/again.cpp:13:
/Users/martin/Desktop/vstsdk2.4/public.sdk/samples/vst2.x/again/source/again.h:16:51:
error: public.sdk/source/vst2.x/audioeffectx.h: No such file or directory
Looks like g++ can't find the audioeffectx.h. How can I set up TextMate to
tell g++ that it should look in "/Users/martin/Desktop/vstsdk2.4/"?
--
View this message in context: http://old.nabble.com/Setting-C%2B%2B-Include-Paths-tp30037571p30037571.html
Sent from the textmate users mailing list archive at Nabble.com.
¡Tienes un nuevo mensaje en Badoo!
Rafael Vega te dejó un mensaje.
Haz click en este enlace para verlo:
http://us1.badoo.com/01128060996/in/-UDb3FMz9c4/?lang_id=7
Más gente que también te está esperando:
Dani (Medellín, Colombia)
Deissy (Medellín, Colombia)
THe PRiNCeSs (Medellín, Colombia)
http://us1.badoo.com/01128060996/in/-UDb3FMz9c4/?lang_id=7
Si al hacer click sobre el enlace, no funciona, copia y pega la dirección en tu barra del navegador.
Este email es parte del procedimiento para que leas los mensajes de Rafael Vega. Si has recibido este email por equivocación, por favor, ignóralo. Tras un corto periodo de tiempo el mensaje sera eliminado del sistema.
¡Diviértete!
El Equipo de Badoo
Has recibido este email porque un usuario de Badoo te ha dejado un mensaje en Badoo. Este mensaje es automático. Las respuestas a este mensaje no estan controladas y no serán contestadas. Si no quieres recibir más mensajes de Badoo, háznoslo saber:
http://us1.badoo.com/impersonation.phtml?lang_id=7&mail_code=63&email=textm…
Hi Craig,
Thanks! That did the trick.
My version is below. I changed the colors to match TextMate's and I had to
change "meta_diff_header" to "meta_diff_range."
.markup_deleted_diff{ background:#f54; color:white; display:block; }
.markup_inserted_diff{ background:#7f8; display:block; }
.meta_diff_range{ background:#47d; color:#fff; display:block; }
Thanks again!
Arturo
Hi Arturo,
Once you do the output to HTML it looks like there are classes applied to everything that would be easy enough to style. I added the following to the style block in my HTML output and it started to come pretty close to the regular syntax highlighting that I use....
.markup_deleted_diff{ background:red; color:white; display:block; }
.markup_inserted_diff{ background:#0f0; display:block; }
.meta_diff_header{ background:#00f; color:#fff; display:block; }
Obviously you could tweak it however you like. Once I added those I saved it to html and printed from the browser (make sure "print background colors" is enabled).
Hope this helps,
Craig
------------------------------------------------------------------------------
Craig Edmond
Creative Lead/Senior Web Designer
finalsite | web software and services for schools
email: craig.edmond(a)finalsite.com<mailto:craig.edmond@finalsite.com>
Hi,
I would like to share the output of diff with some colleagues in a document
(pdf, html) with syntax highlighting so that it is easy to read.
Syntax highlighting in TextMate for a text file with the output is great,
but I cannot figure out how to export with syntax highlighting (html didn't
work) after an hour or so of research.
Any help would be appreciated.
Arturo
Hi,
I'd like to know if it is possible to do a search and replace on some keys
in all bundles and replace them with something else.
Reason, Swedish keyboard doesn't work very well with TextMate.
Mikael Henriksson
Tel: +46 (0) 730- 393 200
mikael(a)zoolutions.se
Hello,
I'm getting used to ctrl-h to replace backspace (as it's simpler to hit, especially when making caps-lock being ctrl), and it works in many places in OS X, except with TextMate, where it invokes the help. I could not find where to change that shortcut so that it becomes backspace instead of help. Is there a bundle involved?
Thanks,
Alan
Sorry for what seems like a really noob question, but I'm ripping my hair out
on this one.
Was working away on a Rails app when I hit what I thought was
<ctl><opt><shift>D. suddenly every .rb file in all of my apps lost all
color. everything is black and white and I can no longer see the comments,
etc. in different colors.
Screenshot:
http://screencast.com/t/mZxoClq34UJ
thanks in advance
--
View this message in context: http://old.nabble.com/.rb-files-turned-black-and-white-tp30021873p30021873.…
Sent from the textmate users mailing list archive at Nabble.com.