Hi,
Using the LaTeX mode, I had &'s appear at the beginning of rows in
tabular environments, which abviously breaks the table. I don't really
know how what triggers this, but I think it happened after upgrading
textmate's bundles from svn...
any idea ?
--
Damien Pollet
type less, do more [ | ] http://typo.cdlm.fasmz.org
Hello folks,
I'm using Mac OS X 10.4.8 OS, I installed Subversion using 4 different
methods with no success (Using Fink, OpenDarwin, directly compiled it,
and using Matthew E. Porter's Package)
With all of them, when I try to checkout source code from anywhere
(RoR, TextMate, ...) with following command:
svn co --username anon http://macromates.com/svn/Bundles/trunk Bundles
It give me an error like:
subversion/libsvn_ra_dav/util.c:826: (apr_err=175002)
svn: REPORT request failed on '/svn/Bundles/!svn/vcc/default'
subversion/libsvn_ra_dav/util.c:296: (apr_err=175002)
svn: REPORT of '/svn/Bundles/!svn/vcc/default': 400 Bad Request
(http://macromates.com)
May someone please help me to find the problem?
Did I forgot anything? Or is there a bug with SVN?
Thanks in advance,
Hello all,
I'm writing a command to mimic eclipse's semicolon insertion. In
Eclipse, when you press ';' it looks for a semicolon at the end of the
line; if there is one already there, you get a ';' at your cursor (as
if you had typed it normally); if not, it puts it in the proper
position at the end of the line, and your cursor is at the end of the
line.
With the following command, TextMate will put the semicolons in the
desired place, but the cursor doesn't move, which is annoying.
input: selected text or line
output: replace selected text
activation: key equivalent ';'
scope: "source"
#!/usr/bin/env ruby
$t = STDIN.read
if $t =~ /\A(.*)\;\Z/
$c = ENV['TM_LINE_INDEX'].to_i
print $t.insert($c, ';')
else
print $t+';'
end
Any idea how to move the cursor? Snippets handle cursor motion, but
I'm not sure I can get the semicolon to go to the right spot. Ideas?
Tricks?
Best,
Kevin
Sorry, if this topic has been brought up before, but I was absent
from the list for a while.
The LaTeX templates extract the name and address from the file ~/
Library/Preferences/AddressBookMe.plist.
Now, I have recently moved and thus changed my address (also in
Address Book.app) but the AddressBookMe.plist is not updated. Indeed,
if I delete the file it is not re-created at all. Any ideas? Is this
due to an update of Apple's Address Book application. Can the content
of my own Address Book entry be retrieved in some other way?
Thanks,
Berndt
Hello,
First time poster to the list, please be gentle!
I installed the mercurial bundle from svn and it is a wonderful tool,
however some parts do not work correctly. For example, viewing the
status of a repo does not work, I get the following error message:
Traceback (most recent call last):
Revert
Diff
File "/opt/local/bin/hg", line 12, in ?
Revert
Diff
commands.run()
Revert
Diff
File "/opt/local/lib/python2.4/site-packages/mercurial/commands.py",
line 3000, in run
Revert
Diff
sys.exit(dispatch(sys.argv[1:]))
Revert
Diff
File "/opt/local/lib/python2.4/site-packages/mercurial/commands.py",
line 3223, in dispatch
Revert
Diff
return d()
Revert
Diff
File "/opt/local/lib/python2.4/site-packages/mercurial/commands.py",
line 3182, in <lambda>
Revert
Diff
d = lambda: func(u, repo, *args, **cmdoptions)
Revert
Diff
File "/opt/local/lib/python2.4/site-packages/mercurial/commands.py",
line 2371, in status
Revert
Diff
files, matchfn, anypats = cmdutil.matchpats(repo, pats, opts)
Revert
Diff
File "/opt/local/lib/python2.4/site-packages/mercurial/cmdutil.py",
line 139, in matchpats
Revert
Diff
opts.get('exclude'), head)
Revert
Diff
File "/opt/local/lib/python2.4/site-packages/mercurial/util.py", line
367, in cmdmatcher
Revert
Diff
return _matcher(canonroot, cwd, names, inc, exc, head, dflt_pat, src)
Revert
Diff
File "/opt/local/lib/python2.4/site-packages/mercurial/util.py", line
454, in _matcher
Revert
Diff
name = canonpath(canonroot, cwd, name)
Revert
Diff
File "/opt/local/lib/python2.4/site-packages/mercurial/util.py", line
348, in canonpath
Revert
Diff
name = os.path.join(*rel)
TypeError: join() takes at least 1 argument (0 given)
Any clues?
Thanks,
Yi
what do I have to do to correct this error (when listing installed
bundles in bundle GetBundle:
Couldn't find svnversion
Locations searched:
/Users/boldfish/Library/Application Support/TextMate/Pristine
Copy/Bundles/GetBundle.tmbundle/Support/bin
/Users/boldfish/Library/Application
Support/TextMate/Support/bin/CocoaDialog.app/Contents/MacOS
/sw/bin
/sw/sbin
/Library/Frameworks/Python.framework/Versions/Current/bin
/bin
/sbin
/usr/bin
/usr/sbin
/usr/X11R6/bin
/Users/boldfish/Library/Application Support/TextMate/Support/bin
TIA
Hello All,
I have been using the sshfs to connect to one of my servers and while
Finder seems to do a particularly bad job when the server goes down
and I don't eject properly, TextMate seems to do an even worse. Is
this just me or is anyone else seeing this.
As soon as the server goes down TextMate seems to start going into
wait mode for long periods of time. Eventually I just get frustrated
and do a Force Quit.
Thanks!
--
~Tyler
Hi,
As it's my first post, let me thank all the macromates guys and the textMate
community for the great work done already. So, Thank you all!
My work led me to edit my own (LaTeX) templates, and for the first of them,
I pressed an uncountable number of times that precious "Test" Button, to see
if everything was OK. I noticed a few things:
1) In my opinion, there should be a kb shortcut for that button.
2) Bug: It happened sometimes that the modifications made to the script
and/or to the template itself were not taken into account. It generally does
not happen at the beginning of the template building session, but once that
famous "Test" Button had been pressed a number of times.
Notice that closing/reopening the bundle editor window solves the problem.
It's up to you, now!
Thx,
Xavier C.