Hello
What I would like to share with you is sort of project management tool that can be
useful for creation more abstract bundles. Basically I am using it with textmate right now.
The idea is to have universal tool that helps to manage projects, establish dependencies between various projects artifacts.
The tool is written in Ruby and can work under any platform. The information can be found on web site:
http://gravitysoft.org/doku.php?id=home:projects:lithium
I have created special bundle called Lithium that easily allows developers:
-- Run php/java/javascript/ruby/python/html/shell code just by one command run. Bundle script looks as follow:
$ lithium -std TextmateHTMLStd run:$TM_FILEPATH
-- Compile/Validate php/java/xml/ruby/python code by one command:
$ lithium -std TextmateHTMLStd compile:$TM_FILEPATH
-- Compile all found source code for the given project
-- Show (CHM) help for appropriate language (Java/Python/Ruby)
and others
Practically in all cases the output is formatted as HTML (looks identically to terminal lithium output) with links to file where exceptions or errors have
occurred (see attached picture).
It seems to me having common "one shot" solution can simplify bundle developing and make it more simple and usable. Needless
to say lithium is open source project that can be used for free.
Regards
Andrei
How could I hide the vertical and horizontal scroll bars in textmate?
And is there any possible way to let the scroll bar never shows up even though my codes are more than one page?
Tkanks in advence
Hi,
I've create a small interactive python debugger for TextMate that I've
open sourced at https://github.com/boxed/PythonMate
It supports the basics:
- Step/out/continue, etc
- Moves the cursor to the corresponding line in TextMate
- You can set a breakpoint from within TextMate by sending it a simple
AppleScript command (setup is documented in the git repo)
I would have liked a way for bookmarks in TextMate to correspond to
breakpoints or some other visualization of the breakpoints inside
TextMate but I couldn't find any way of doing this. Any tips?
Best Regards,
Anders Hovmöller
I'm not sure how that dialog is called in that situation but I don't think opacity applies there does it? It just inserts a hex value which doesn't support opacity.
------------------------------------------------------------------------------
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>
------------------------------------------------------------------------------
finalsite Web Tech Events
coming to your neighborhood
http://www.finalsite.com/webtech
------------------------------------------------------------------------------
finalsite University (6/21-6/23)
web strategies conference in Avon, CT
http://www.finalsiteU.com<http://www.finalsiteU.com/>
------------------------------------------------------------------------------
finalsite University International (4/12-4/13)
international educators’ conference in Istanbul, Turkey
http://www.finalsite.com/fsuinternational
------------------------------------------------------------------------------
CONFIDENTIALITY NOTICE: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure, or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply e-mail and destroy/delete all copies of the original message.
Not really has it been brought up before, but whenever I use the Insert Color... command in CSS bundle, the color picker dialog misses the opacity slider. Is there any fix for it?
Cheers
I have a weird problem in which the caret moved in an unexpected way. Let's say I have
test<caret>\n
and type command-], it becomes
<tab>tes<caret>t\n
where "<caret>" indicates the position of the cursor and "<tab>" indicates a tab. Basically the "shift-right" command moved the caret left a position unexpectedly. This problem only shows if there is at least a blank line beneath the "test" line. On the other hand, if I have
<tab>test<caret>\n
then I type command-[, then it becomes
test\n
<caret>
where the caret jumps to the next line (while removing the tab correctly). Although it can be argued that this might be preferable under some situations, I would prefer it to remain in the same line. This happens in all syntaxes that I have tried. I renamed my ~/Library/Application Support/Textmate to something else but this is still happening. I imagine that a simple explanation is that the caret pointer stays at the same character count (within the document), without accounting for the newly inserted/removed tab. This might explain both command-] and command-[, but of course it is only a wild conjecture.
Any suggestions? Thanks!
Do anyone know the way to make title bar show the path of the file, I have lots of files with same names and need to detect which of them I have opened
I receive the following error:
** ERROR **
(erb):8:in `show': undefined method `e_url' for TextMate::HTMLOutput:Module (NoMethodError) from (erb):7:in `each' from (erb):7:in `show' from /Applications/TextMate.app/Contents/SharedSupport/Support/lib/tm/htmloutput.rb:89:in `show' from /tmp/temp_textmate.JhN5QG:16
** /ERROR **
when I attempt to Preview the following Textile code:
** CODE **
h1. header
* first item
* second item
* third item
h2. header 2
*strongly emphasized*
h3. header 3
_less emphasized_
h4 header 4
# item one
# item two
# item three
bq. this is a blockquote
More commentary.
* a
* l
* j
** /CODE **
It works fine here: http://textile.thresholdstate.com/
I am not sure what the problem is.
Any ideas.