Problem:
Solution:
https://github.com/vim/vim/pull/20024
(1 file)
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
Thanks, but why did you move the settings from lines 20-24 to 38-41? And why did you drop the if exists() condition?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.![]()
why did you move the settings from lines 20-24 to 38-41
just a style preference to put function definitions before their references, can move back if we want to minimize diff
why did you drop the if exists() condition
saw in other files we didn't do it and saw we already had the early return at the top of the file so didn't seem necessary, can also add this back if we want to minimize diff
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.![]()