A plugin to use tmux terminal multiplexer in Acode editor on Android.
- Opens tmux terminal in the current file's directory
- Side button for quick access to tmux
- Automatic tmux installation if not present
- Acode app installed
- Termux or similar terminal app with tmux
- Download the plugin from Acode plugin store
- Or build from source:
npm install
npm run build
- Open any file in Acode
- Tap the "Tmux" button in the sidebar
- The plugin will:
- Install tmux (if not already installed)
- Open tmux in the current file's directory
| Command |
Description |
tmux |
Start a new session |
tmux new -s <name> |
Start a named session |
tmux ls |
List sessions |
tmux attach -t <name> |
Attach to a session |
tmux detach |
Detach from session (Ctrl+b, d) |
| Command |
Description |
Ctrl+b c |
Create new window |
Ctrl+b n |
Next window |
Ctrl+b p |
Previous window |
Ctrl+b , |
Rename window |
Ctrl+b & |
Close window |
| Command |
Description |
Ctrl+b % |
Split vertically |
Ctrl+b " |
Split horizontally |
Ctrl+b arrows |
Navigate panes |
Ctrl+b x |
Close pane |
Ctrl+b z |
Toggle pane zoom |
| Command |
Description |
Ctrl+b ? |
Show key bindings |
Ctrl+b [ |
Copy/Scroll mode |
npm install
npm run build
MIT