Include compilation errors in s:history for :Last
If the repl doesn't return a value due to an error during compilation (EOF due to missing bracket, unrecognised symbol), the response has no value and as a result is not added to the history. However it's useful to add it so it can be inspected with :Last to aid with fixing the issue.
This commit is contained in:
parent
52d906b3a4
commit
b57c21c29b
@ -452,6 +452,9 @@ endfunction
|
||||
|
||||
function! s:temp_response(response) abort
|
||||
let output = []
|
||||
if get(a:response, 'err', '') !=# ''
|
||||
let output = map(split(a:response.err, "\n"), '";!!".v:val')
|
||||
endif
|
||||
if get(a:response, 'out', '') !=# ''
|
||||
let output = map(split(a:response.out, "\n"), '";".v:val')
|
||||
endif
|
||||
@ -494,7 +497,7 @@ endfunction
|
||||
function! fireplace#session_eval(expr) abort
|
||||
let response = s:eval(a:expr, {'session': 1})
|
||||
|
||||
if !empty(get(response, 'value', ''))
|
||||
if !empty(get(response, 'value', '')) || !empty(get(response, 'err', ''))
|
||||
call insert(s:history, {'buffer': bufnr(''), 'code': a:expr, 'ns': fireplace#ns(), 'response': response})
|
||||
endif
|
||||
if len(s:history) > &history
|
||||
|
Loading…
Reference in New Issue
Block a user