kiryph

Results 117 comments of kiryph

@skywind3000 This sounds easy to do. Why do you not want to do this? Tagbar (maintained alternative to taglist) has only 152 lines in plugin/ and 3389 lines in autoload/....

I was pinging this issue because you had written > if the loc exceeds 1000, I'd like to move it to autoload. and this now the case. I do not...

> (and most other plugins utilizing "autoload") luckily they are doing it. Isn't this an indication that one should do it? If no plugin would do it, maybe this discussion...

With vim8 you do not need a plugin manager, you do not need to touch your vimrc and installation is a one-liner: ``` $ git clone https://github.com/skywind3000/asyncrun.vim ~/.vim/pack/manual/start/asyncrun.vim ``` This...

FYI: fugitive has recently moved most of the code to the autoload directory (see commit https://github.com/tpope/vim-fugitive/commit/5d11ff75014818da25596a89cea71df680e31788, 2018-06-01) with now following line counts: plugin/fugitive.vim: 190 lines (174 sloc) autoload/fugitive.vim: 3282 lines...

@cristianpjensen @pstaerk Did you install [fswatch](http://emcrisostomo.github.io/fswatch/), e.g. via `$ brew install fswatch`? It is used by `main.py` for non-linux systems: https://github.com/gillescastel/inkscape-figures/blob/78d0572a7e101d0df45c0b9f43b8005845ae1ded/inkscapefigures/main.py#L102-L105 https://github.com/gillescastel/inkscape-figures/blob/78d0572a7e101d0df45c0b9f43b8005845ae1ded/inkscapefigures/main.py#L230-L232 You should find a running background job with...

@qstrahl any chance this plugin will be extended so that a visual selection can grow?

@qstrahl Thanks for the quick feedback. I guess I picked the wrong time of the year to ping someone to hope to get him to add a great missing feature...

I could resolve this with your plugin as well. ```viml nnoremap zo foldclosed('.')==-1? \ ':execute "normal \(fold-cycle-open)"': \ 'zo' ``` **My remaining question is:** how can I disable the periodic...

Adding to your plugin the variable `g:fold_cycle_enable_cycling` ```diff ❯ git diff diff --git a/autoload/fold_cycle.vim b/autoload/fold_cycle.vim index df182ef..a975f78 100644 --- a/autoload/fold_cycle.vim +++ b/autoload/fold_cycle.vim @@ -330,7 +330,7 @@ function! fold_cycle#open() abort "{{{3...