From cecb6f2175e2c04f32bcae5ec4464e419477e5a5 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 19 May 2024 21:37:35 -0500 Subject: [PATCH] refactor!: ADD FORK DEPRECATION NOTICE -- USE UPSTREAM! --- lua/nvim-ts-autotag.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/nvim-ts-autotag.lua b/lua/nvim-ts-autotag.lua index 118388c..0f66374 100644 --- a/lua/nvim-ts-autotag.lua +++ b/lua/nvim-ts-autotag.lua @@ -31,6 +31,10 @@ function M.init() }) end +vim.notify( + "[nvim-ts-autotag]: Go back to upstream https://github.com/windwp/nvim-ts-autotag and stop using the fork. The fork author is now a maintainer upstream and the primary owner is back. This fork will see no more updates on this branch.", + vim.log.levels.WARN +) M.setup = require("nvim-ts-autotag.config.plugin").setup return M