I recently upgraded the OS on my server that holds my SVN repository,
and I had to re-check out my code.
So now, in TextMate, I get "permission denied" whenever I try to make
a commit. I can run the commit from Terminal (with a password
prompt), but not from within Textmate.
After the server upgrade, I believe I originally connected from
Terminal using svn+ssh. I assume that's the protocol it's still
using? I have the ssh-rsa key in my ~/.ssh/known_hosts file. I'm
using the same user name locally as on my server.
I also followed the instructions to create key pairs at ...
http://blog.macromates.com/2005/subversion-support-and-ssh-key-pairs/
... but it's still prompting me when I ssh through Terminal.
Can anyone point me to how to get TextMate to commit?
Thanks.
--
Dwayne Purper
Futura : Durham, NC USA
www.futuracreative.com
Not urgent an query, just looking for some insight...
I've put together a little bash script (that creates an AppleScript)
to stick an entry into Journler based on a parsed version of the
current line or selection:
input=${TM_SELECTED_TEXT:-$TM_CURRENT_LINE}
title=${input%\|*\|*}
tags=${input#*\|}
tags=${tags%\|*}
tags=${tags//, /\", \"}
tags=${tags%\", \"}
note=${input#*\|*\|*}
aplscr="tell application \"Journler\" to set en1 to make new entry
with properties {name:\"$title\", tags:{\"$tags\"}, rich text:\"$note
\"}"
osascript -e "$aplscr" &>/dev/null &
echo "Added entry\ntitle: $title; tags: {\"$tags\"}; note:$note"
echo "$aplscr"
Whilst it does work, I realised that there are more cunning minds at
work on this list than mine, and perhaps they might have some way to
clean-up those substitutions for the $tags variable in the middle. I
know I can do it using a sed script, but I was wondering if there was
some elegant bash trick I was missing....
Any ideas?
I put together a quick and moderately dirty hack to modify TextMate's Info.plist so that I get Quick Look support for text types that it claims on Leopard. Source code only, use at your own risk (see comments at the top for usage). As far as I understand, using UTImportedTypeDeclarations should not override the more correct UTIs supplied by the system or other apps, but I won't guarantee that.
http://homepage.mac.com/amaxwell/.cv/amaxwell/Sites/.Public/utconvert.m-zip…
--
adam
I'm in the habit of writing my method definitions without parentheses
around the argument list, like:
def initialize name, id, *args
# ...
end
TextMate doesn't recognize the arguments, so the jump-to-method and
the symbols drop-down can get confusing... and the arguments aren't
colored correctly in the editor window. I'm not sure how to fix this,
or submit my modifications to the SVN repository. Could someone point
me in the right direction?
Thanks,
Erwin
I love the way
(I miss an automatic way of reformatting C/C++ code inside TM… but
that is another story)
I have changed the output to build directly an html window in TM:
The problem is, when I copy/paste the code to include it in Mail, for
example, empty or short lines ending in space make funny things,
leaving blanks after the numbers…
Is there any solution.
I have the PHP bundle in `/Library/Application Support/TextMate/
Bundles/PHP.tmbundle`.
I have my personal bundle in `~/Library/Application Support/TextMate/
Bundles/McBroom.tmbundle`.
Both bundles contain preferences for comments that are scoped for
"source.php". My understanding is that the preferences in my personal
bundle should be taking precedence because that bundle is in my home
directory and thus "more local". This is what seems to happen on my
work machine (still running Tiger) with a similar configuration and
this is how things appeared to work on my laptop pre-Leopard. But now,
TextMate seems to be taking the preferences from the PHP bundle
instead of mine. If I remove the PHP bundle from /Library and let the
one in TextMate.app take over, it still seems to take precedence over
the preferences in my home directory.
Any ideas?
---
Rob McBroom
<http://www.skurfer.com/>
Dear mailing list members,
I'm writing my master thesis at the moment and writing it in TextMate
with the Latex bundle is awesome! But one thing is driving me crazy:
When I write "` as beginning quotation mark and hit the space key, the
finishing quotation mark is '" and not "' as it should be.
It would be very nice if someone would fix this in the next release, for
all those graduating students out there.
Cheers,
Svenja
Ahoy.
I just installed websvn up on the ole bundleforge.
http://bundleforge.com/
You can now browse, subscribe to rss changelogs & download tarballs of
any and all Bundles from 6 bundle collections.
If you know of a bundle repo that should be added to the list, please
let me know.
This is an "alpha" version because this isn't exactly what I had
intended to do with BundleForge in the longrun. However, this is
better than nothing.
Enjoy.
—Thomas Aylott – subtleGradient—
> Sorry to describe the changes I made rather than giving a bunch of
> patches but the normal bundle development model just won't work for
> me. I change a bunch of stuff for my personal use (like some of the
> hacks above) so I need to keep the ~/Library/Application Support/
> Textmate directory for my own personal modifications. If someone
> could tell me an easy way to produce a diff of the changes I've made
> here with the actual bundle maybe I could be more helpful.
>
> Anyway thanks to the author(s) of the latex bundle for all the work
> they've put in so far. Hopefully this was helpful an not just
> useless bitching.
>
> Peter
I don't know if this has been addressed already, but I have another
two concern since I last updated my bundles:
1) Inside a non-maths scope, adding an underscore still produces "_{}"
rather than just "_". For example:
\includegraphics[width=170mm]{./figures/tf12_resonance.PNG}
adding "_" with the caret after "resonance" produces
\includegraphics[width=170mm]{./figures/tf12_resonance_{}.PNG}
which pdflatex doesn't seem to like very much. The same is true for
captions, sections, subsection, ... Would it be possible to change the
scope of the "_" command to math only?
2) A similar issue arises when I add powers in math mode using "^".
This correctly produces "^{}" and places the caret inside the
brackets. Pressing _any_ key now however adds another iteration of the
command, like so: "^{^{}}". I am using a German keyboard, so to get a
"^", I have to press the key above tab and then hit space. This might
be related to the problem I have.
Best,
Jonas