mirror of
https://github.com/Hopiu/micro.git
synced 2026-04-05 15:30:59 +00:00
Add some lines back
This commit is contained in:
parent
8c0983a36c
commit
50e22dafc4
1 changed files with 7 additions and 0 deletions
|
|
@ -17,6 +17,13 @@ import (
|
|||
"github.com/zyedidia/tcell/encoding"
|
||||
)
|
||||
|
||||
const (
|
||||
synLinesUp = 75 // How many lines up to look to do syntax highlighting
|
||||
synLinesDown = 75 // How many lines down to look to do syntax highlighting
|
||||
doubleClickThreshold = 400 // How many milliseconds to wait before a second click is not a double click
|
||||
undoThreshold = 500 // If two events are less than n milliseconds apart, undo both of them
|
||||
)
|
||||
|
||||
var (
|
||||
// The main screen
|
||||
screen tcell.Screen
|
||||
|
|
|
|||
Loading…
Reference in a new issue