Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Sources/Runestone/Documentation.docc/Documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Runestone provides a text view with support for features commonly found in code
- Highlight ranges in the text view.
- Search the text using regular expressions.
- Automatically detects if a file is using spaces or tabs for indentation.
- Specify line endings (CR, LF, CRLF) to use when inserting a line break.
- Automatically detect line endings in a text.

The text view provided by Runestone does not subclass UITextView but has an API that is similar to the one of UITextView.

Expand Down
4 changes: 4 additions & 0 deletions Sources/Runestone/Documentation.docc/Extensions/TextView.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@
### Invisible Characters

- ``showSpaces``
- ``showNonBreakingSpaces``
- ``showTabs``
- ``showLineBreaks``
- ``showSoftLineBreaks``
- ``spaceSymbol``
- ``nonBreakingSpaceSymbol``
- ``tabSymbol``
- ``lineBreakSymbol``
- ``softLineBreakSymbol``
Expand Down Expand Up @@ -82,6 +84,8 @@
- ``TextLocation``
- ``goToLine(_:select:)``
- ``GoToLineSelection``
- ``moveSelectedLinesUp()``
- ``moveSelectedLinesDown()``

### Indenting Text

Expand Down