]> git.lizzy.rs Git - micro.git/blob - internal/config/globals.go
Merge
[micro.git] / internal / config / globals.go
1 package config
2
3 const (
4         DoubleClickThreshold = 400 // How many milliseconds to wait before a second click is not a double click
5 )
6
7 var Bindings map[string]string
8
9 func init() {
10         Bindings = make(map[string]string)
11 }