-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathhelp.go
More file actions
27 lines (22 loc) · 670 Bytes
/
Copy pathhelp.go
File metadata and controls
27 lines (22 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package main
import "fmt"
func showHelp() {
fmt.Println(helpText)
}
const helpText = `3mux
The terminal multiplexer inspired by i3
USAGE:
3mux Interactive 3mux interface
3mux ls List session names (has alias '3mux ps')
3mux attach <name> Attach to a session
3mux detach Detach from the current session
3mux new <name> Create a new session
3mux kill <name> Kill a session
SHORTCUTS:
Alt+N/Alt+Enter Create new pane
Alt+Shift+Q Close pane
Alt+Shift+F Make pane fullscreen
Alt+Shift+Arrow Move pane
Alt+Arrow Move selection
Alt+/ Toggle search
`