0

Compatible SFTP file providers

latourfl 3 years ago in iPad 0

Are there any app with SFTP file provider extension that are compatible with Textastic besides Secure ShellFish?

I tried SFTP File Provider from Akos Polster, and FileBroswer, but both are greyed out when opening the Add External Folder panel. What makes them incompatible?

Thank you!

0
Under review

Cannot edit anything

Ondrej Krajicek 3 years ago in iPad updated by Alexander Blach (Developer) 3 years ago 1

I have run into a strange issue. Regardless of what I open and from where, I cannot edit anything. Textastic opens the files, but it just does not respond to any keyboard input. The application itself is responsive (I can change settings, etc.), but all files are - sort of - readonly. It does not matter if those files come from external folders, are live files or “local” Textastic files. Tried restart, reinstall and did not help. 

iPad, iPadOS 14.5

0
Under review

Opening a Markdown link in Safari mishandles escapes

John Meyer 3 years ago in iPad updated 3 years ago 3

Example...

in Markdown:
[YouTube vid](https://www\.youtube\.com/watch?v=2SJ977\-CMPg&t=360)

if I try to open this in Safari or copy the link (from the Preview)... I get the following URL, which is malformed...

https://www/.youtube/.com/watch?v=2SJ977\-CMPg&t=360

there's several issues with that URL... first \. in the Markdown should become . in preview, but instead it becomes /.
also \- should become - and & should become & but both are left as is

as a test, the following 2 lines of Markdown will produce the identical string of output characters (although the second line will be wrapped in a "pre" tag), unless escaping is broken in which case the first line will have extra backslashes

\!\#\&\(\)\*\+\-\.\:\<\>\@\[\\\]\^\_\`\{\|\}\~\
``!#&()*+-.:<>@[\]^_`{|}~``
0

Filebrowser Support

Poison 3 years ago in iPad 0

Please add Filebrowser integration to get access to more locations to work with. 

https://www.stratospherix.com/api/

0

Still can not edit file over SSH/FTPS?

scripzero 3 years ago in iPad updated by Alexander Blach (Developer) 3 years ago 1

I saw the developer reply for this Feature for over 10 years and now still no this feature?

Answer

You can do this using the Secure ShellFish app:

- add the SSH/SFTP server to Secure ShellFish

- enable Secure ShellFish location in the Files app

- add the server as an external folder to Textastic (see https://www.textasticapp.com/v9/manual/integration_other_apps/external_files_folders.html#adding-external-folders)

This allows you to edit files lives on an SFTP server.

0

CoffeeScript files not open

ozgurozpolat 3 years ago in iPad 0

editor says: not valid file extension when i try to open from external icloud location.

0
Planned

Korean text typing error

clockoon 3 years ago in iPad updated by Alexander Blach (Developer) 1 year ago 3

In recent version (maybe 9.6~), Korean character at the first position of line suffers disassemble error. For example, when typing ‘강물’ (in order of ㄱ + ㅏ + ㅇ + ㅁ + ㅜ + ㄹ), Textastic force to represent ‘ㄱㅏㅇ물’. There is no way to assemble it; the only (temporary) solution is add a whitespace or other character before typing, and delete it later.

Answer

I could reproduce the problem and found a workaround. This will be fixed in the next update.

0
Under review

Being able to open ejs files with Textastic

Jesper 3 years ago in iPad updated by Alexander Blach (Developer) 3 years ago 1

I can‘t open ejs files with Textastic through Working Copy.

How can I do this or are you going to add the file support?

0

Jump to file in folder

Neo Ighodaro 3 years ago in iPad updated 3 years ago 1

Hey, nice app. Just bought it and started using it on my iPad. I think theres should be a way to jump within files in the loaded directory. Sort of the way you can do cmd+p in vscode.

This would be of great help andimprove productivity within the app itself.

0
Under review

How to begin styling with css

Jenjen 3 years ago in iPad updated by Alexander Blach (Developer) 3 years ago 1

Hi I have just finished writing my code on html using Textastic and I just don’t know how to get around opening another tab and setting it to css so that I begin styling my code


Answer

I assume that the .html file is stored somewhere in the "Local Files" or in the "iCloud" location.

  • In the same folder, tap the "+" button in the bottom toolbar.
  • Enter a file name with a ".css" file extension -> this opens a new CSS file in a new tab.
  • In the .html file, add a link tag to the head section as described at https://www.w3schools.com/tags/tag_link.asp 
  • If you now open the web preview using the glasses icon while the tab with the .html file is open, you should see the CSS styles from the .css file applied. You can also open the web preview on the .css file and enter the path to the .html file in the address bar of the web preview. This allows you to preview the website while previewing the .css file without having to switch to the .html file first.

Alternatively, you can add the CSS directly to the .html file using a style tag in the header section as described at https://www.w3schools.com/tags/tag_style.asp.