From c01132cd90f1a94643f561bf6045d147e9c7394b Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Fri, 23 Jan 2026 09:53:00 -0600 Subject: [PATCH] tests/plugins/origami: fix deprecated settings --- tests/test-sources/plugins/by-name/origami/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/test-sources/plugins/by-name/origami/default.nix b/tests/test-sources/plugins/by-name/origami/default.nix index 25e7cb16..8a43cc2c 100644 --- a/tests/test-sources/plugins/by-name/origami/default.nix +++ b/tests/test-sources/plugins/by-name/origami/default.nix @@ -8,7 +8,10 @@ enable = true; settings = { - useLspFoldsWithTreesitterFallback = true; + useLspFoldsWithTreesitterFallback = { + enabled = true; + foldmethodIfNeitherIsAvailable = "indent"; + }; pauseFoldsOnSearch = true; foldtext = { enabled = true; @@ -29,7 +32,7 @@ }; foldKeymaps = { setup = true; - hOnlyOpensOnFirstColumn = false; + closeOnlyOnFirstColumn = false; }; }; };