We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9334595 commit c77c78bCopy full SHA for c77c78b
lua/overseer/init.lua
@@ -6,6 +6,9 @@ local M = {}
6
7
local setup_callbacks = {}
8
9
+local BREAKING_CHANGES_NOTICE =
10
+ [[ATTN: overseer.nvim will experience breaking changes soon. Pin to version v1.6.0 or earlier to avoid disruption.
11
+See: https://github.com/stevearc/overseer.nvim/pull/448]]
12
local initialized = false
13
local pending_opts
14
local function do_setup()
@@ -17,6 +20,7 @@ local function do_setup()
17
20
pending_opts = {}
18
21
end
19
22
23
+ vim.notify_once(BREAKING_CHANGES_NOTICE, vim.log.levels.WARN)
24
local config = require("overseer.config")
25
local log = require("overseer.log")
26
config.setup(pending_opts)
0 commit comments