Bottom toolbar with editor controls contains:
The sidebar contains a list of currently opened documents. The top of sidebar contains an information about the currently active document: size, name and full path.
A tap on the document name it the list makes it active.
A long tap on the document name in list opens a context menu, that allows close this document, close all curently opened documents or close all other opened documents.
If you use a hardware keyboard, or the onscreen "Hacker's keyboard", you can use such keyboard shortcuts:
The Find and replace toolbar can be shown with the Search item from the main toolbar or Ctrl+f
keys.
The Find operation uses regular expressions, so you can perform complex find and replace operations.
But, if you not familar with RE, and want to perform simple search, you must know next:
Symbols []{}.\*+?^&()|
has a special meanings in RE, so you must screen them with the "slash" character \
.
For example: if you search .getElementsByTagName(
, you must write \.getElementsByTagName\(
.
If your regular expression contains groups, made with ()
, you can insert a group values into a replace string,
using the \
and number of the group
For example, the search string is width = "(\d+)"
and the replacement string is width="\1px"
Digits that will be found by the search operation, will be inserted in the replace string instead of \1
.