0
Under review

General UI - Sidebar

MastroPino 9 years ago updated by Alexander Blach (Developer) 9 years ago 1

Hi there,

there is any way to set up the fonts of the sidebar? I mean how can I set like xCode? If I use Menlo 11pt the sidebar fonts must be 10pt (sorry for bad English)

Another think, is it possible to use the same folder of Safari Inspector? The yellow one! Maybe in the configuration window we can put an option for Blu or Yellow folder.


Thanks for your attention

0

AppleScript: Set bounds of window 1 to …

Tim “Kudusch” Schatto-Eckrodt 11 years ago updated 11 years ago 2
It would be awesome if you could resize Textastic windows with the standard AppleScript function get bounds and set bounds.
0
Fixed

Crash with Golang tmbundle

Matt Keranen 11 years ago updated by Alexander Blach (Developer) 11 years ago 3

Installed a Textmate bundle for Go into ~/Library/Containers/com.textasticapp.textastic-mac/Data/Library/Application Support/Textastic with


git clone git://github.com/AlanQuatermain/go-tmbundle.git Go.tmbundle


Upon restart and opening a .go file, Textastic crashes:


Process:         Textastic [52162]
Path:            /Applications/Textastic.app/Contents/MacOS/Textastic
Identifier:      com.textasticapp.textastic-mac
Version:         1.1 (10)
App Item ID:     572491815
App External ID: 15056171
Code Type:       X86-64 (Native)
Parent Process:  launchd [154]
User ID:         502
Date/Time:       2013-08-01 17:18:11.015 -0400
OS Version:      Mac OS X 10.8.4 (12E55)
Report Version:  10
Interval Since Last Report:          1207848 sec
Crashes Since Last Report:           60
Per-App Interval Since Last Report:  713006 sec
Per-App Crashes Since Last Report:   3
Anonymous UUID:                      8FBEE994-3FCF-346B-B5CE-89CD304E101B
Crashed Thread:  2  Dispatch queue: com.apple.root.default-priority
Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Application Specific Information:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSArray arrayByAddingObject:]: object cannot be nil'
abort() called
terminate called throwing an exception


Answer

The Go language grammar uses features of TextMate 2 which seems to support an extended syntax for language grammars. This extension allows to define patterns within captures which was not supported in TextMate 1. Textastic doesn't support this syntax and expected a scope name instead which resulted in a crash.


The crash happens while parsing this line:


    for k, v := range m {



Although Textastic won't fully support the new features, the crash will be fixed in the next version and the Go bundle is usable. It just won't highlight the variable names 100% correctly.

0
Under review

Use iPad/iPhone as a second screen/window for code

Jordan Arenstein 11 years ago updated by Alexander Blach (Developer) 11 years ago 0

I think it would be very, very cool to have an iPad (maybe running textastic or on safari off a local server) to be a display for code open in Textastic on Mac. 

0
Answered

Is there any way to test Textastic for Mac? Is there any trial download?

Adam S 11 years ago updated by Alexander Blach (Developer) 11 years ago 0

I'm always up for a new editor.  I use Coda, which is beautiful, but I'm not terribly attached for HTML/PHP/CSS/Javascript.  

Answer

A trial version of Textastic is now available for download at http://www.textasticapp.com/mac.html

0

"Home key" (⇧⌘←) should snap to indentation level, then actual column zero.

Alice Bevan-McGregor 11 years ago 0

Lots of synonyms for this request, so apologies if I'm double-posting.  When pressing home (⌘←) with or without ⇧ pressed to make a selection, the cursor should first jump to just before the first non-whitespace character, then on a second press jump to column zero.  A checkbox to configure this behaviour would be good, possibly mapping it to a content type.  (Which would then make more sense as a checkable menu item.)

0
Answered

How do I set Textastic as the default git editor?

Alexander Blach (Developer) 11 years ago updated 11 years ago 0
I want to use Textastic for Mac as the editor for "git commit".
Answer
You can use the following command to set Textastic as the editor for git commit:

git config --global core.editor "open -a Textastic \"$@\" -W"

The "-W" switch waits until Textastic is closed, so you need to quit the app (Cmd-Q) to finish the commit.

If you would leave out the "-W" switch, git would try to commit immediately and you'd get the following error message: "Aborting commit due to empty commit message."

You can see a documentation of the command line options when you type "man open".
0

(option to) autoload the document(s) that were open before last quit (like OS X Text Edit)

dyscode com 11 years ago updated by Alexander Blach (Developer) 11 years ago 1

as the title says

0
Fixed

Application crashed when i try edit and save "/private/etc/hosts".

Максим Рысь 11 years ago updated by Alexander Blach (Developer) 11 years ago 3

Application crashed when i try edit and save "/private/etc/hosts".

After reopen, application open last tab with old file and crashed when i try close this tab.

Answer

This will be fixed in the next update.