-
Notifications
You must be signed in to change notification settings - Fork 0
/
intro.go
38 lines (25 loc) · 909 Bytes
/
intro.go
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
28
29
30
31
32
33
34
35
36
37
38
package main
import (
"fmt"
)
const (
intro = `Hello! Thank you for trying out tmux-autocomplete.
tmux-autocomplete should not be running from terminal, it should be running
using tmux bindings, put following line to your ~/.tmux.conf:
bind-key C-Space run -b 'tmux-autocomplete'
Then reload tmux configuration using following command:
tmux source ~/.tmux.conf
Now tmux-autocomplete can be triggered using following key bindings:
Control+b Control+Space
You can change default prefix key binding Control+b to Control+Space too, add
following line to your ~/.tmux.conf and then reload tmux configuration again:
set -g prefix C-Space
Now tmux-autocomplete can be triggered using following key bindings:
Control+Space Control+Space
If you have any questions, don't hesitate to contact us:
https://tmux.reconquest.io/support/
`
)
func printIntroductionMessage() {
fmt.Println(intro)
}