vim-anyfold icon indicating copy to clipboard operation
vim-anyfold copied to clipboard

Language agnostic vim plugin for folding and motion based on indentation.

Results 13 vim-anyfold issues
Sort by recently updated
recently updated
newest added

I usually make use of foldnestmax=2, more folding than that seems like an overkill to me (mostly Python code). http://vimdoc.sourceforge.net/htmldoc/options.html#'foldnestmax' So having vim-anyfold pick up that option, would be great...

enhancement

Fixes https://github.com/pseewald/vim-anyfold/issues/37

Is it possible to configure it so that the line with the terminating brace `}` and/or blank lines gets included in the fold? If I have: ```cpp void f() {...

Currently, when using anyfold to fold away lists in a plain text files, any section headings in the file get confused as part of the list. For e.g., given ~~~...

Sometimes another foldexpr or related mappings might be useful. It would be nice to restore AnyFold after this. Previously, the double initialization guard in the #init function prevented in. This...

```vim " deprecated initialization using anyfold_activate variable " still works but echoes a warning au BufNewFile,BufRead * call anyfold#init(0) ``` First, this autocmd don't be included in an augroup, which...

```vim if g:anyfold_motion noremap ]] \ :call JumpFoldEnd(0,v:count1) noremap [[ \ :call JumpFoldStart(0,v:count1) noremap ]k \ :call JumpPrevFoldEnd(0,v:count1) ``` Why not use `anyfold#jumpfoldend` to replace ``? `` make it is...

I am using vim-anyfold with GitGutter plugin. `:GitGutterPreviewHunk` opens a pop window to view changes. But when `autocmd Filetype * AnyFoldActivate` is present in my vimrc, it throws the following...

![image](https://user-images.githubusercontent.com/54072354/84819634-f322d180-afdd-11ea-901a-5bff2a4d879c.png) ![image](https://user-images.githubusercontent.com/54072354/84819674-05047480-afde-11ea-9c38-6632ebc69ee4.png) Compare the above images. The first is from vscode, the second from vim using anyfold. It's the same code, but there's one obvious difference: the folding. You see,...

enhancement

Hi, I like this project. Just moved away from simpylfold. **BACKGROUND** I was wondering if something like _customization_ was possible using vim-anyfold. Please have a look at the two pictures...

enhancement