SimpylFold icon indicating copy to clipboard operation
SimpylFold copied to clipboard

No-BS Python code folding for Vim

Results 19 SimpylFold issues
Sort by recently updated
recently updated
newest added

I would like to modify the plugin to allow custom folding based on markers. (I have some groups of functions that I would like to hide all together. I want...

VIM - Vi IMproved 8.0 (2016 Sep 12, compiled Sep 20 2021 12:26:53) I've tried to install plugin /.vim/pack/plugins/start/SimpylFold - this works great on Centos 8 and Python code folds...

The plugin currently folds imports, docstrings and class/function definitions, but not indentation block. This works great for me in most of situations. In some cases when I deal with very...

I wanted the ability to see function names not be incorporated into the fold, similar to (Issue: folds the function names too? #108) and also I saw that a lot...

First of all, thank you for making this. FYI, I couldn't seem to get it installed without also including the following 3 lines at the bottom of my local .vimrc...

Hi, @tmhedberg thanks for this pluginnn! And sometimes when I in normal mode delete a line or paste from clipboard, the fold which current line belongs to will auto close....

It would be nice to have a config option to always display the docstring, even when the method is folded.

enhancement
need-opinions

Steps to reproduce: * Create python file as follows ```python class A: """Class Docstring """ def __init__(self): """init docstring """ pass def myprint(self): """Testing function docstring """ print('Printed myprint') print('Printed...

This has caused some major problems with my folding. If I'm editing a method in a class, after a certain amount of lines are added (as in, lines of code,...

... such as copyright notices. I'd suggest that a fully blank line breaks a block, or perhaps that can be configurable.

enhancement