fork download
  1. let s:hook = {
  2. \ "name" : "restore_updatetime",
  3. \ "kind" : "hook",
  4. \ "config" : {
  5. \ "updatetime" : 1000,
  6. \ }
  7. \}
  8.  
  9. function! s:hook.on_exit(...)
  10. let &updatetime = self.config.updatetime
  11. endfunction
  12.  
  13. function! s:hook.sweep(...)
  14. let &updatetime = self.config.updatetime
  15. endfunction
  16.  
  17. call quickrun#module#register(s:hook, 1)
  18. unlet s:hook
  19.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty