From 63d5050ca0d8932c40b2b45134adab4b1ed0aa17 Mon Sep 17 00:00:00 2001 From: Grzegorz Adam Hankiewicz Date: Wed, 10 Apr 2013 22:42:41 +0200 Subject: [PATCH] Disables silence when invoking idetools. Refs #4. 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. --- autoload/nimrod.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/nimrod.vim b/autoload/nimrod.vim index 328c2e4..f8d4da5 100644 --- a/autoload/nimrod.vim +++ b/autoload/nimrod.vim @@ -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