We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61e327e commit 45f195aCopy full SHA for 45f195a
docs/src/usage.md
@@ -43,13 +43,15 @@ TUI.initialize()
43
This function does a few things:
44
45
```julia
46
+backup_termios()
47
tui_mode()
48
hide_cursor()
49
enable_raw_mode()
50
clear_screen()
51
move_cursor_home()
52
```
53
54
+- `backup_termios()`: backups termios settings to recover back to default terminal settings
55
- `tui_mode()`: starts an alternate buffer
56
- `hide_cursor()`: makes cursor not visible
57
- `enable_raw_mode()`: capture key presses as they happen without waiting for the enter key
0 commit comments