mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:30:03 +08:00
15 lines
169 B
Plaintext
15 lines
169 B
Plaintext
Before:
|
|
inoremap <silent><expr> ( cmp#pre_complete("()")
|
|
|
|
Given go (func haha):
|
|
func haha
|
|
|
|
Do:
|
|
9|a(
|
|
|
|
Expect go ():
|
|
func haha()
|
|
|
|
Then:
|
|
AssertEqual 10, col('.')
|