justincampbell / vim-eighties

Automatically resizes your windows
http://www.vim.org/scripts/script.php?script_id=4502
MIT License
64 stars 6 forks source link

Allow for optional list of bufnames to not resize #12

Closed jondkinney closed 9 years ago

jondkinney commented 9 years ago

usage:

let g:eighties_bufname_additional_patterns = ['fugitiveblame']

This way if you do a :Gblame on a file, then navigate around with the blame open, it won't get re-sized. It's the same behavior we want from NERDTree too, but instead of just hard-coding it in that array I made it configurable.

justincampbell commented 9 years ago

Thanks so much! Could you update the README as well?

justincampbell commented 9 years ago

Fixes #9

jondkinney commented 9 years ago

@justincampbell README updated. Thanks!

justincampbell commented 9 years ago

Thanks so much!