Skip to content

Commit

Permalink
Disables silence when invoking idetools. Refs zah#4.
Browse files Browse the repository at this point in the history
After some time editing with the "silent!" bit removed everything seems
to work fine, so maybe the silencing was done when there was no error
log.
  • Loading branch information
gradha committed Apr 10, 2013
1 parent 4c3f231 commit 63d5050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/nimrod.vim
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ fun! GotoDefinition_nimrod()
let defBits = split(rawDef, '\t')
let file = defBits[4]
let line = defBits[5]
exe printf("silent! e +%d %s", line, file)
exe printf("e +%d %s", line, file)
return 1
endf

Expand Down

0 comments on commit 63d5050

Please sign in to comment.