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...
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...
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?...
... 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 -...
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...
Consider the following three AppleScripts: -- script 1 do shell script "echo some text | /usr/bin/see" on seescriptsettings() {displayName:"Pipe into see"} end...
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 &"...
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...
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...
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...
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...
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...
... 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...
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...
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...
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,...
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....
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...
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...
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...
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...
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...
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...
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...
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: ...
... 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...
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...