Closed astier closed 3 years ago
Hi. Just a minor thing I noticed in your code. You are storing lastplace_ignore and lastplace_ignore_buftype as strings instead of a list. If you would store them as a list you wouldn't need to call split() on them here: https://github.com/farmergreg/vim-lastplace/blob/8f6c4454eb462776b6ebdc48e3e29a68ddeb726d/plugin/vim-lastplace.vim#L30
lastplace_ignore
lastplace_ignore_buftype
split()
Hi @astier, it's too late to change this now because it would not be backwards compatible. thanks for your input!
Hi. Just a minor thing I noticed in your code. You are storing
lastplace_ignore
andlastplace_ignore_buftype
as strings instead of a list. If you would store them as a list you wouldn't need to callsplit()
on them here: https://github.com/farmergreg/vim-lastplace/blob/8f6c4454eb462776b6ebdc48e3e29a68ddeb726d/plugin/vim-lastplace.vim#L30