On Aug 7, 2006, at 8:00 AM, textmate-request(a)lists.macromates.com wrote:
> Sorry for the delay in responding, I have been away from
> internet access (I guess you could say "vacation"). This was
> caused by an update to the TextMate library dialog.rb that
> caused a method I was calling to return an array with one
> element (namely the text you entered) instead of the element
> itself. It should be fixed now if you update the global
> support directory.
Thanks Haris, that did the trick. And I figured you were on vacation,
since you're usually right on top of these things ;)
Hope you had a good one, and thanks again for fixing this.
- Dave
Sorry for the delay in responding, I have been away from
internet access (I guess you could say "vacation"). This was
caused by an update to the TextMate library dialog.rb that
caused a method I was calling to return an array with one
element (namely the text you entered) instead of the element
itself. It should be fixed now if you update the global
support directory.
On Aug 5, 2006, at 7:35 AM, Oliver Hagmann wrote:
>Yes. Same happening here. Using the latest bundles, revision
>and support folder.
>Oliver
Haris
Hi everybody,
Hope this hasn't been answered anywhere else, but I couldn't find it.
I just updated my Textmate to a newer version, and now I don't see
the "Show all modifications" link on the Subversion menu (the one
that pops up when I hit Control-Shift-A).
I have:
.....
Diff with Revision
---
Resolve conflicts with FileMerge
Resolved
---
Help
.....
I don't see Show all modifications in there at all. Any suggestions?
I really liked that functionality.
Thanks in advance!
Cameron
Another question I can't solve on my own. When I type ' - a single
quote - I don't want to see a closing one inserted automatically
(this is Lisp, after all). The newLISP language bundle has this:
smartTypingPairs = (
( '(', ')' ),
( '[', ']' ),
( '{', '}' ),
( '"', '"' ),
);
so obviously it's some sort of default behaviour. Can I switch it off
in this bundle yet leave it available in others?
thanks
--
(<http://newlisper.blogspot.com/>)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I made a few changes to the GTD bundle, basically cleaning up the
list view commands. Please let me know if you have any comments.
Thanks.
Mike
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (Darwin)
iD8DBQFE1LFL4oDM7Rgs0h0RArKJAJ4xPjsWbuzhNc9vyPwIgX8sYbV9YgCfbJo+
ijqOjuINMWx+V+BJaI7xY7E=
=Kznu
-----END PGP SIGNATURE-----
Hi,
When I try saving a file, the save dialogue appears, whose name field
is, let's say, "untitled.html". In this case, all the letters
including html are highlighted.
It'd be useful if only "untitled" is highlighted so that, when user
starts to type in file name, the extension is untouched. In this way,
users can save a few letters of typing (e.g., html, js, sql, rb, m).
I understand, in some cases, extensions can be different than by
default (e.g., both html and htm are okay for HTML documents).
But, personally, in most cases, I'm OK with default extensions. Does
anybody have any thoughts on this?
Takaaki
--
Takaaki Kato
Hello,
another question regarding the LaTeX bundle:
There have been requests for making footnotes collapsable in the
past. I still find this highly desirable, but there does not seem to
be an easy solution for this at the moment. (Background: I work with
a document with a lot of footnotes, many of them being rather long.
It would be much easier to read and edit the main text if the
footnotes could be collapsed.)
I'd like to ask if another thing could be implemented more easily: It
would already help a lot if the footnotes would appear in another
color (or with another background color), so that it would be
possible to see where a footnote starts and ends immediately.
Is this possible?
Thanks in advance,
best regards
Matthias
--
Matthias Damm
mad(a)macpla.net
PGP key: http://macpla.net/MatthiasDamm.asc
PGP fingerprint: CED3 6074 7F7D 3148 C6F3 DFF2 05FF 3A0B 0D12 4D41
On Jul 25, 2006, Gerd wrote:
> On Jul 24, 2006, at 6:14 PM, Brad Choate wrote:
>
> >The second one sounds as if you have a file or files selected in
> >the project drawer that have no local changes.
> They do, svn on the command line, or using the svn bundle with one of
> the changed files selected in TM works fine. It is just the
> "Subversion Status" panel from which it doesn't work.
>
> Gerd
Has this been fixed/addressed yet? I've checked the archives but I
can't seem to find a resolution. I'm still getting the "File(s) not
modified; nothing to commit." when I try to 'Commit' from the SVN
'Status' window. I'm fully up to date with the app (cutting edge) and
the svn repository. And yes, I do have the top level folder of the
project selected when I run the 'Status' command.
Carpe viam,
Mike
Michael Larocque
Chief Cook and Bottle Washer
Prolumina Communications Inc.
http://prolumina.com/~mlarocque/
Sometime in the last few days I've had a problem using GTDAlt's
broke for me, when I use '#' to bring up the due date dialog and hit
return to accept 'today', instead of inserting the date it displays
this:
/Library/Application Support/TextMate/Bundles/GTDAlt.tmbundle/
Support/bin/GTDUtils.rb:27:in /bin/bash: -c:
line 1: unexpected EOF while looking for matching `''
/bin/bash: -c: line 2: syntax error: unexpected end of filedowncase'
for ["today"]:Array (NoMethodError)
from /tmp/temp_textmate.kKMNI2:10
Is anyone else seeing this? BTW, I just updated Bundles as well as
the Support folder, and still have the problem.
I'd like my functions to appear in the popup menu. My function
definitions look like this:
(define (func-name arg1 arg2)
(print "the arguments were " arg1 " and " arg2))
and the bundle I've been given has this:
{ name = 'declaration.function.lisp';
match = '(\b(?i:(def\-new|define(-macro)?))\b)(\s+)((\w|\-|\!|\?)*)';
captures =
{ 2 = { name = 'keyword.control.function-type.lisp'; };
4 = { name = 'entity.name.function.lisp'; };
};
},
I can understand why it also covers other types of definition ( eg
(def-new and (define-macro ) although I rarely use these, and it sort
of looks Ok at first glance (I don't know whether some of those
parentheses should be escaped...). Nothing appears in the function
pop-up menu, though. Should I expect this to work as like this or has
something else gone wrong, or does it rely on other things being set
as well?
--
(<http://newlisper.blogspot.com/>)