On Dec 1, 2013 12:33 AM, "Christian Brabandt" <[email protected]> wrote: > > Hi ping! > > On Fr, 29 Nov 2013, ping song wrote: > > > csv plugin is nice, but for some reason when I open a large file it take > > forever to load and then freeze. Ctrl-c doesn't help. > > Actually, Ctrl-C should always abort. I have never seen, when Ctrl-C > does not abort a command. Note, that using :ArrangeColumn (either > explicitly or implicitly using an autocommand (:h csv-arrange-autocmd)) > or using dynamic filters can slow down the plugin considerably when used > with large files. My advise is, to simply avoid those commands for large > csv files.
It will not abort if code is written not in VimL or if somebody is catching Vim:Interrupt and resumes computations. Assuming "Ctrl-c doesn't help" means "Ctrl-c does not abort" it is most likely the first because sane developers do not do the second. > > > is there a way to disable it (without uninstall) temporarily? > > :set ft=foobar > > Best, > Christian > -- > Wer niemals außer sich geriete, wird niemals in sich gehen. > -- Paul von Heyse > > -- > -- > You received this message from the "vim_use" maillist. > Do not top-post! Type your reply below the text you are replying to. > For more information, visit http://www.vim.org/maillist.php > > --- > You received this message because you are subscribed to the Google Groups "vim_use" group. > To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_use" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
