Skip to content

Instantly share code, notes, and snippets.

@kshenoy
Last active December 15, 2015 18:09
Show Gist options
  • Save kshenoy/5302176 to your computer and use it in GitHub Desktop.
Save kshenoy/5302176 to your computer and use it in GitHub Desktop.
Function to open folds that have less than the specified number of lines
function! FoldAllBut( foldminlines )
" Description: Function to open folds that have less than the specified number of lines
" We assume that the folds are initially closed
" If a fold exists and is closed and has lesser number of lines than specified, open it and all nested folds
" Note: This does not work on nested folds
folddoclosed
\ if (( foldclosed(".") >= 0 ) && ( foldclosedend(".") - foldclosed(".") + 1 < a:foldminlines ))
\ exe 'normal! zO'
\ endif
endfunction
@kshenoy
Copy link
Author

kshenoy commented Apr 4, 2013

Ah, works properly now. Updated it at my end as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment