From fb5446eebdb05a68d6671fa47ca1c8f05dd7af8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Fri, 29 Mar 2024 18:14:07 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(nvim):=20wrong=20cmd=20in=20?= =?UTF-8?q?the=20zenmode=20extra?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/nvim/lua/plugins/extras/ui/zen-mode.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/nvim/lua/plugins/extras/ui/zen-mode.lua b/.config/nvim/lua/plugins/extras/ui/zen-mode.lua index f90439be..782e9aea 100644 --- a/.config/nvim/lua/plugins/extras/ui/zen-mode.lua +++ b/.config/nvim/lua/plugins/extras/ui/zen-mode.lua @@ -15,7 +15,7 @@ return { executeCommandIfExists(":SatelliteDisable") executeCommandIfExists(":ScrollViewDisable") executeCommandIfExists(":LspLensOff") - executeCommandIfExists(":NvimContextVtDisable") + executeCommandIfExists(":NvimContextVtToggle") executeCommandIfExists(":IBLDisable") LazyVim.toggle.inlay_hints() executeCommandIfExists(":Gitsigns toggle_current_line_blame") @@ -26,7 +26,7 @@ return { executeCommandIfExists(":SatelliteEnable") executeCommandIfExists(":ScrollViewEnable") executeCommandIfExists(":LspLensOn") - executeCommandIfExists(":NvimContextVtEnable") + executeCommandIfExists(":NvimContextVtToggle") executeCommandIfExists(":IBLEnable") LazyVim.toggle.inlay_hints() executeCommandIfExists(":Gitsigns toggle_current_line_blame")