Skip to content

Commit 3a79fe0

Browse files
author
newlix
authored
fix godef
1 parent 6a9d559 commit 3a79fe0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Support/gomate.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def Go::godef
120120
if err.nil? || err == ''
121121
file_details = out.split(':')
122122
TextMate.go_to(:file => file_details[0],
123-
:line => file_details[1],
123+
:line => file_details[1].to_i,
124124
:column => file_details[2].to_i)
125125
else
126126
TextMate.exit_show_tool_tip(err)

0 commit comments

Comments
 (0)