I'm trying to interrupt a for loop such as in code below,
for num in buffer_number_list
" Select the buffer
exe 'buffer' num
" Run the command that's passed as an argument
exe a:command
" Save if necessary
update
endfor
instead of interrupting only line exe a:command, when a:command is a
:s/// command.
The purpose is to change code on response to How to do search & replace with ack in vim?
I've tried surrounding the line exe a:command with a try/catch block,
but it doesn't worked, probably because the command handled the interrupt
signal without re-throwing it.
Tried remapping CTRL-c to change some variable (which would be checked inside of the loop), but it didn't worked:
let original_Ctrl_c = maparg('<c-c>', 'n')
exe 'nnoremap <c-c> :call <SID>BreakLoop()<CR>' . original_Ctrl_c
It seems that the mapping didn't trigger when the interrupt signal is caught.
Any ideas?
EDIT:
It seems that this problem only occurs in gVim (thanks @ib.)
QFDofunction would this be closer to the effect you are looking for:function! QFDo(command) abort? – Peter Rincker Sep 20 '11 at 16:09CTRL-cis intercepted by the command. – mMontu Sep 20 '11 at 16:42v:errmsg. see:h v:errmsg. – Peter Rincker Sep 20 '11 at 17:38QFDo(basically the same except noupdate) and I do not see the behavior you are trying to avoid. Maybe I am missing something, but I would imagine between usingtry/finally,abort, andv:errmsgdo not work then it may be un-catch-able. The only thing left I can think of is setting some global variable like you are using. Make sure you useg:variable_name– Peter Rincker Sep 22 '11 at 22:24