mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-18 00:42:13 +03:00
0f63dd339a
1. Highlight short variable declaration operator :=. 2. 'while' is not go keyword. 3. Auto insert ')', '}', when line ends with '(' or '{'.
23 lines
204 B
Plaintext
23 lines
204 B
Plaintext
func foo(x int) int {
|
|
}
|
|
|
|
func foo(x int) int {
|
|
|
|
}
|
|
|
|
func foo(x int) int {
|
|
bar()
|
|
}
|
|
|
|
func foo(x int) int {
|
|
bar()
|
|
}
|
|
|
|
func foo(x int) int {
|
|
bar()
|
|
}
|
|
|
|
func foo(x int) int {
|
|
bar()
|
|
}
|