From 457af1fa2fb74c85d50adbe4184c5792e5307c76 Mon Sep 17 00:00:00 2001 From: Zach Zolton Date: Thu, 28 Mar 2024 15:50:07 -0400 Subject: [PATCH] Fix syntax error GASP --- after/ftplugin/python.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/after/ftplugin/python.lua b/after/ftplugin/python.lua index a4d9dbc1..bd154b6d 100644 --- a/after/ftplugin/python.lua +++ b/after/ftplugin/python.lua @@ -9,7 +9,7 @@ vim.keymap.set('n', 'is', function() local modified = vim.api.nvim_get_option_value("modified", { buf = bufnr }) if modified then - print('*** Save your changes first!' ***) + print('*** Save your changes first! ***') return end local file_name = vim.api.nvim_buf_get_name(0) -- Get file name of file in current buffer