From c88a2fbb9e0f0f86e8afa4d9f88551adc8f6fda4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20Hern=C3=A1ndez?= Date: Sat, 12 Mar 2022 12:03:53 -0500 Subject: [PATCH] Fixes "E474: Invalid argument" This line treats background option set as a get when using the `&background` identifier. It should be `background` without the `&` --- colors/ayu.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/ayu.vim b/colors/ayu.vim index 9158e6b..25d4306 100644 --- a/colors/ayu.vim +++ b/colors/ayu.vim @@ -272,6 +272,6 @@ hi! link diffAdded String " " This is needed for some reason: {{{ -let &background = s:style +let background = s:style " }}}