From 0af5352a174345b676368799f2019dac856a47f5 Mon Sep 17 00:00:00 2001 From: Fabrice Mouhartem Date: Mon, 17 Feb 2025 15:09:40 +0100 Subject: [PATCH] revert(autocommand): revert back to markdown autocommand trigger - reverts b6dae05d63c0ae3ffc13f126f1fa5e818f12c52c - Some weird behaviour where things where detected as pandoc at random --- lua/autocommands.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/autocommands.lua b/lua/autocommands.lua index 6995e4a..876bb55 100644 --- a/lua/autocommands.lua +++ b/lua/autocommands.lua @@ -3,7 +3,7 @@ local spelling = vim.api.nvim_create_augroup("spelling", { clear = true }) local spell_keymap = require('spelling').spell_keymap -- Recognize .md as pandoc -vim.api.nvim_create_autocmd({ "BufNew", "VimEnter" }, { +vim.api.nvim_create_autocmd({ "BufEnter", "BufWinEnter" }, { pattern = { "*.md", }, group = markdown, callback = function()