From: Keith Smiley Date: Mon, 15 Jun 2020 15:55:42 +0000 (-0700) Subject: Move vim flag cast to outside of get (#1486) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/4ccc8c86f5081990000c4dc09868d0bf040fb484?ds=sidebyside;hp=4ccc8c86f5081990000c4dc09868d0bf040fb484 Move vim flag cast to outside of get (#1486) With this config: ```toml [tool.black] line-length = 79 ``` In neovim, this is loaded as a string which later causes an exception to be thrown. This makes sure the value is always cast to an int ---