Results 637 comments of Antony Lee

That seems fine to me, but note that this is only available on Py3.8, so you'll have to choose between restricting astsearch to only work on py3.8, or having different...

OK, I implemented and pushed something close to your suggestion in https://github.com/takluyver/astsearch/pull/10#issuecomment-894772114 (except that exceedingly-long matches are still printed but elided after max_lines lines -- I think this behavior makes...

No, even with it commented my profile contains the following entry: ``` SCRIPT /home/antony/.vim/view/ Sourced 1 time Total time: 9.031140 Self time: 0.045362 count total (s) self (s) let s:so_save...

The profile data above was obtained simply by `:e ` with the profiler on. Manually sourcing the view file results in a similar profile.

Now I have disabled all other plugins and it appears that directly loading the view is essentially instantaneous (possibly because vim doesn't update the folds in that case?). I am...

Can you list exactly what you want me to do in each condition? `:e` the file? ` :lo`? Should I delete the view file at any point? That'll save a...

I set my vimrc (with `vim -u /path/to/vimrc`) to the minimal ``` set nocompatible call plug#begin() Plug 'tmhedberg/SimpylFold' Plug 'Konfekt/FastFold' Plug 'kopischke/vim-stay' call plug#end() filetype plugin on ``` and tried...

See attached. tmhedberg/simpylfold is the folder I was using for python, but I removed it for this run. [profile-fastfold-and-stay.txt](https://github.com/Konfekt/FastFold/files/714610/profile-fastfold-and-stay.txt) [profile-only-fastfold.txt](https://github.com/Konfekt/FastFold/files/714611/profile-only-fastfold.txt) [profile-only-vimstay.txt](https://github.com/Konfekt/FastFold/files/714612/profile-only-vimstay.txt)

I guess that for symmetry with the currently existing `short` kwarg, I could support a `long` kwarg which could be a `{parameter_name: cli_name, ...}` mapping (but unlike short, the cli_name...