I recently took the time to properly configure GoSublime and MarGo, it works great!
I just have one issue. Let's suppose we have the following file:
package main
import "fmt"
func main() {
var foobar string
fmt.Prin
}
If I press TAB to autocomplete Prin, the line will turn into fmt.Println() with the cursor between the parenthesis. Now, if I write foo and press TAB, the cursor will move at the end of the line and won't autocomplete foobar (which was shown in the autocomplete dialog).
Write fmt.Prin and press TAB;
The cursor is between the parenthesis;
Write foo and press TAB;
foo has not been autocompleted and the cursor is at the end of the line.
Is there any way to remove this cursor marker? Or at least to change its priority?
I recently took the time to properly configure GoSublime and MarGo, it works great!
I just have one issue. Let's suppose we have the following file:
If I press
TAB
to autocompletePrin
, the line will turn intofmt.Println()
with the cursor between the parenthesis. Now, if I writefoo
and pressTAB
, the cursor will move at the end of the line and won't autocomplete foobar (which was shown in the autocomplete dialog).fmt.Prin
and pressTAB
;foo
and pressTAB
;foo
has not been autocompleted and the cursor is at the end of the line.Is there any way to remove this cursor marker? Or at least to change its priority?
Thanks!