Hey Martin: Still hoping for Growl support. I talked to the folks at Growl, but they say you guys need to support it. Growl support would make my life ever...
143
michael_j_barber
michael_j_ba...
Jan 5, 2008 9:01 am
Is it possible to add structuring elements to the mode menu? I'd like to be able to put some dividing lines between groups of scripts, or possibly group...
144
Martin Pittenauer
martinpitten...
Jan 7, 2008 3:30 pm
... That's a good idea. Currently that's not possible but it sounds like a really useful addition. All the best, Martin...
145
michael_j_barber
michael_j_ba...
Jan 8, 2008 4:53 pm
Standard convention for Unix files is that they should end with a newline. Is there any combination of settings that will get SubEthaEdit to do this?...
146
michael_j_barber
michael_j_ba...
Jan 8, 2008 4:53 pm
... Well, perhaps in a future version, then. As it stands, the nine items I've got in the extended LaTeX mode I've been working on are pretty hard to read -...
147
Alexander Henket
ahenket
Jan 8, 2008 7:05 pm
Under the Format menu you will find what you are looking for on per document basis. In the Preferences you can set it for all new documents. Regards Alexander...
148
michael_j_barber
michael_j_ba...
Jan 8, 2008 7:06 pm
Consider the following three AppleScripts: -- script 1 do shell script "echo some text | /usr/bin/see" on seescriptsettings() {displayName:"Pipe into see"} end...
149
Jeff Groth
jtgroth007
Jan 8, 2008 10:30 pm
After some research and experimentation I was able to get the desired result with the following: do shell script "echo some text | /usr/bin/see &> /dev/null &"...
150
michael_j_barber
michael_j_ba...
Jan 9, 2008 9:17 am
I believe you have misread me. In the Format menu, you can set the line endings to be carriage returns, line feeds, or both. However, the file itself should...
151
michael_j_barber
michael_j_ba...
Jan 9, 2008 9:18 am
That is remarkably strange. I tried ending with & and redirecting the output to /dev/null individually, neither of which worked, but it didn't occur to me to...
152
Cole Tierney
cole_putnamhill
Jan 9, 2008 3:28 pm
... If you can filter through sed somehow, then the following should guarantee that the file ends with a line feed: sed -e '$s/\(.*\)/\1/39; -- Cole...
153
Alexander Henket
ahenket
Jan 9, 2008 11:33 pm
That sounds like a content requirement that I would not expect SubEthaEdit itself to handle. However with the aforementioned sed option or any other third...
154
michael_j_barber
michael_j_ba...
Jan 10, 2008 8:35 am
... Sure, there are other ways, as well; that's not the hard part. It's the "filter through ... somehow," as you note, that is the problem....
155
michael_j_barber
michael_j_ba...
Jan 10, 2008 8:35 am
OK, I'll bite: how do you enforce it? The mechanics of adding a line feed are not a challenge. Invoking it automatically on every save - and preferably in a...
156
jannisleidel
Jan 10, 2008 11:13 am
Hi list, I wondered if there are other people interested in running a standalone server for sharing documents (e.g. "SubEthaServer") on any other OS than Mac...
157
Martin Pittenauer
martinpitten...
Jan 10, 2008 11:26 am
... We are currently working on a dedicated server for Mac OS X. We will have a look at ways to bring it to other operating systems once we are finished with...
158
Alexander Henket
ahenket
Jan 10, 2008 2:12 pm
Your requirement is not something that is intrinsic to any language or standard, but just something you want done. As such I would not expect any editor at all...
159
michael_j_barber
michael_j_ba...
Jan 10, 2008 4:40 pm
Ah, but it is intrinsic to languages and standards! Most relevant here is that POSIX defines a text file as being terminated with a newline. Various programs...
160
Alexander Henket
ahenket
Jan 10, 2008 9:22 pm
I did not know about the Posix requirement. It sounds like silly requirement, but if it is a standard, than so be it. A lot of great minds thought about Posix,...
161
michael_j_barber
michael_j_ba...
Jan 11, 2008 9:08 am
POSIX does contain a fair share of silliness - there's a lot of history driving it, too. It's not strictly a requirement, though, but rather a definition....
162
Peter K. Johnson
petermankato
Jan 31, 2008 8:59 pm
When I use the Compile and Run button on the menu bar SubEthaEdit compiles my classes okay but gives me an error that it can¹t find a class that is external...
163
michael_j_barber
michael_j_ba...
Feb 4, 2008 11:03 am
I've taken a look at the Java mode scripts, and I think I know what the problem is. However, I don't really do any Java programming, so I can't be completely...
164
petermankato
Feb 4, 2008 3:25 pm
Michael, Thanks for the details. The problem seems to be when Java is called to run the compiled program. I did a quick video (using Jing) to show what...
165
michael_j_barber
michael_j_ba...
Feb 5, 2008 9:53 am
After watching your screencast, I think it might be a good idea to extract out the core of the Compile and Run script, and see if we can't better isolate where...
166
michael_j_barber
michael_j_ba...
Feb 17, 2008 5:28 pm
As some of the readers of this list may know, I've been working, off and on, on adding scripting support to the LaTeX mode, integrating SubEthaEdit with LaTeX...
167
dasgeniedotcom
Mar 3, 2008 6:40 am
I can explain this issue, it is based on the synchronous nature of applescript. when you start running an applescript in subethaedit, and then try to run...
168
Jeff Groth
jtgroth007
Mar 16, 2008 10:26 pm
Is there any way (hidden preference, perhaps) to change the pattern of the swap file name. The ._ seems to cause problems when committing to an arch...
169
underdoeg
Apr 3, 2008 8:02 am
Hi everyone. I am trying to compile the currently open as code file with mxmlc. It did work actually. But then suddenly I got the following error message: ...
170
michael_j_barber
michael_j_ba...
Apr 3, 2008 11:17 am
... But ... AppleScript doesn't wait forever for a response. IIRC, it times out after a minute. If your compile takes longer than that, you'll get the error...
171
underdoeg
Apr 3, 2008 4:54 pm
Tanks for your quick reply. I already set the timeout. But that didn't work. But with the try I can at least show a decent error message. Thanks. I don't...