Hi!
I really like the blogging bundle. It's amazing.
But each time I close the window, I am asked to save the file. I
think there are few, if at all, who save their blog entries as files.
Wouldn’t it be a better behavior to ask for post to blog? Also I
naturally type apple+s, when I am finished. So, I added a copy of the
post to blog command and associated this shortcut to it. Storing the
file in this case seems similar to post it. What do you think?
Helge
Hi,
I could swear I have used a command that would reformat something like
<tr>
<td> </td>
<th id="number">N</th>
<th id="percontage">%</th>
<th id="number">N</th>
<th id="percontage">%</th>
</tr>
and "ex/plode" it to:
<tr>
<td > </td>
<th id="number" >N</th>
<th id="percontage">%</th>
<th id="number" >N</th>
<th id="percontage">%</th>
</tr>
for easy option+selection. I wanna say it was part of subtlegradient,
but cant find it anywhere.
(it probably does not help that somehow I have ended up with 3
subtlegradieent bundles.)
--
dc
-----
David Clark
Web Specialist
Institute for Community Inclusion (http://www.communityinclusion.org/)
david.clark(a)umb.edu
(617) 287-4318
Hello Textmate-Users,
i'd love to see a solid block-cursor in Textmate, configurable by the
user : blinking or not, block or default as it is. Maybe i'm gettin'
old, but i find myself frequently searching for the cursor since I
switched to working on black.
I'd like to read u'r opinion on this and for sure maybe there exists
a osx-hack already to achive this without bothering Allen ;-)
Greets, Andreas
---
»In a perfect world… spammers would get caught, go to jail, and share
a cell with many men who have enlarged their penisses, taken Viagra
and are looking for a new relationship.«
If anyone is interested, and happens to have Rmagick installed, I added on
to the image insertion drag and drop command in the blogging bundle to
automatically thumbnail and link with titles, alt tags, etc. It gives you a
drop down menu asking you whether you want the thumbnail, the full image, or
the thumbnail linked to the full image (a rel=lightbox tag is included for
those using it).
Like I said, it requires Rmagick (and ImageMagick or GraphicsMagick) to be
compiled and installed. It bootlegs on the original command for everything
else.
Brett
A common refrain on this list is being able to edit files remotely. I
explored various solutions (transmit, subversion, hotkey), but
decided that ultimately what I wanted was something that would just
watch one or more local files I was editing and then as they change,
automatically upload them to a remote destination.
So I spent some time last night hacking together syncmate (python
script), attached:
Usage: syncmate <file> [<file>...] [username@]host:/remote/path/
Watches one or more files for changes and copies to host whenever the
file changes locally. The first time called, starts an instance of
syncmate
as a daemon. Each subsequent time called registers new files with the
running
daemon.
Usage: syncmate --list
Lists registered files
Usage: syncmate --quit
Causes daemon to quit
It requires the Growl python bindings be installed for notification
(btw, I had trouble with the Growl python bindings occasionally
causing python to crash, but I think I've narrowed the problem down
to attempting to use a custom icon in the notifications, so I've left
that out.)
Anyway, I find this useful in combination with textmate, so I figured
I'd post it here. Hope someone else finds it useful.
j.
The darwin ports email list is temporarily shutdown and I couldn't
find any other help online. thought one of the experts here could
help since I need this to use LaTex with TextMate.
I'm trying to install teTex on my iBook G4 and have installed Xcode
2.4 and DarwinPorts 1.3.1, I get the following error.
Any ideas on what I can do to get Tex on my Mac?
Thanks
Dennis
/usr/bin/ld: warning weak referenced symbols:
_getaddrinfo
/usr/bin/ld: Undefined symbols:
_XCreateGC referenced from libXpm expected to be defined in
/usr/X11R6/lib/libX11.6.dylib
_XCreatePixmap referenced from libXpm expected to be defined in
/usr/X11R6/lib/libX11.6.dylib
_XFreeGC referenced from libXpm expected to be defined in
/usr/X11R6/lib/libX11.6.dylib
_XPutImage referenced from libXpm expected to be defined in
/usr/X11R6/lib/libX11.6.dylib
_XAllocColor referenced from libXpm expected to be defined in
/usr/X11R6/lib/libX11.6.dylib
_XCreateImage referenced from libXpm expected to be defined in
/usr/X11R6/lib/libX11.6.dylib
_XDefaultColormap referenced from libXpm expected to be defined in
/usr/X11R6/lib/libX11.6.dylib
_XDefaultDepth referenced from libXpm expected to be defined in
/usr/X11R6/lib/libX11.6.dylib
_XDefaultScreen referenced from libXpm expected to be defined in
/usr/X11R6/lib/libX11.6.dylib
_XDefaultVisual referenced from libXpm expected to be defined in
/usr/X11R6/lib/libX11.6.dylib
_XFreeColors referenced from libXpm expected to be defined in
/usr/X11R6/lib/libX11.6.dylib
_XGrabServer referenced from libXpm expected to be defined in
/usr/X11R6/lib/libX11.6.dylib
_XParseColor referenced from libXpm expected to be defined in
/usr/X11R6/lib/libX11.6.dylib
_XQueryColors referenced from libXpm expected to be defined in
/usr/X11R6/lib/libX11.6.dylib
_XUngrabServer referenced from libXpm expected to be defined in
/usr/X11R6/lib/libX11.6.dylib
collect2: ld returned 1 exit status
make[2]: *** [xdvi-xaw.bin] Error 1
make[1]: *** [all] Error 1
make: *** [all] Error 1
I noticed that there's an XHTML bundle in the repository and then
there's the HTML bundle included by default. I'm wondering, if
there's an XHTML bundle, why does the default HTML bundle use XHTML
in its snippets? Can we move that nonsense into the XHTML bundle and
let those that want it install it? (Perhaps it should be included by
default as well.) Just curious.
Rob
Hello,
Ok, I'm probably missing something obvious here, but I can't find
anything in textmate to let you run your tests without going to the
terminal. With everything else in there, it seems like it would be
something included.
Anyway, I took a few minutes from work to do a quick hack to the
bundle (my changes attached). I bound the run test command to command
- option - G. If the textmate cursor is in a controller or model, it
will run the associated test file. If the TM cursor is in a test file
(unit or functional) it will only run the test method that the cursor
is in (so that when I'm writing a test, I can run it real quick). If
the cursor is outside of a test method (test_*) it will run the entire
file.
I added a file to the bundle ( bin/test_helper.rb) and a command.
I also might have found a bug in the bundle. See the comments in
bin/test_helper.rb
Please let me know if there already is something out there that would
probably be far more thought through than this quick hack.
Thanks,
-carl
Hi!
Since yesterday I get the following authentification request while
trying to do an svn up:
Authentication realm: <http://macromates.com:80> macromates.com
Password for 'root':
When I interrupt it with ctrl+c I get:
subversion/libsvn_ra_dav/util.c:826: (apr_err=170001)
svn: PROPFIND request failed on '/svn/Bundles/trunk'
subversion/libsvn_ra_dav/util.c:296: (apr_err=170001)
svn: PROPFIND of '/svn/Bundles/trunk': authorization failed (http://
macromates.com)
I'm using the mateup-script for checkouts but manual checkouts didn't
work as well.
Anyone having the same problem or is there a solution?
Niels
--
Jack Sparrow: Me? I'm dishonest, and a dishonest man you can always
trust to be dishonest. Honestly. It's the honest ones you want to
watch out for, because you can never predict when they're going to do
something incredibly... stupid.
-- Pirates of the Carribean: The Secret of the Black Pearl