From 766c8d6bc9b07c8132572571c0cf3c7e645aa001 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Sat, 18 Jan 2014 23:25:44 -0500 Subject: [PATCH] Don't require successful ns load to send nREPL message --- plugin/fireplace.vim | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugin/fireplace.vim b/plugin/fireplace.vim index 226b963..73c3600 100644 --- a/plugin/fireplace.vim +++ b/plugin/fireplace.vim @@ -165,10 +165,7 @@ endfunction function! s:repl.message(payload, ...) dict abort if has_key(a:payload, 'ns') && a:payload.ns !=# self.user_ns() - let error = self.preload(a:payload.ns) - if !empty(error) - return error - endif + let ignored_error = self.preload(a:payload.ns) endif return call('s:conn_try', [self.connection, 'message', a:payload] + a:000, self) endfunction