Skip to content

Commit 0694651

Browse files
TheSastfolke
andauthored
feat(loader): warn when maplocalleader is changed after init (#1326)
* feat(loader): warn when maplocalleader is changed after init * docs: default maplocalleader --------- Co-authored-by: Folke Lemaitre <[email protected]>
1 parent c96fc24 commit 0694651

File tree

4 files changed

+14
-1
lines changed

4 files changed

+14
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ require("lazy").setup(plugins, opts)
6767
```lua
6868
-- Example using a list of specs with the default options
6969
vim.g.mapleader = " " -- Make sure to set `mapleader` before lazy so your mappings are correct
70+
vim.g.maplocalleader = "\\" -- Same for `maplocalleader`
7071

7172
require("lazy").setup({
7273
"folke/which-key.nvim",
@@ -537,7 +538,7 @@ Any command can have a **bang** to make the command wait till it finished. For e
537538
if you want to sync lazy from the cmdline, you can use:
538539

539540
```shell
540-
$ nvim --headless "+Lazy! sync" +qa
541+
nvim --headless "+Lazy! sync" +qa
541542
```
542543

543544
`opts` is a table with the following key-values:

lua/lazy/core/config.lua

+4
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,9 @@ M.me = nil
199199
---@type string
200200
M.mapleader = nil
201201

202+
---@type string
203+
M.maplocalleader = nil
204+
202205
function M.headless()
203206
return #vim.api.nvim_list_uis() == 0
204207
end
@@ -245,6 +248,7 @@ function M.setup(opts)
245248
-- disable plugin loading since we do all of that ourselves
246249
vim.go.loadplugins = false
247250
M.mapleader = vim.g.mapleader
251+
M.maplocalleader = vim.g.maplocalleader
248252

249253
if M.headless() then
250254
require("lazy.view.commands").setup()

lua/lazy/core/loader.lua

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ function M.setup()
5050
Util.track()
5151
end
5252
Config.mapleader = vim.g.mapleader
53+
Config.maplocalleader = vim.g.maplocalleader
5354

5455
-- report any warnings & errors
5556
Config.spec:report()

lua/lazy/manage/reloader.lua

+7
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,13 @@ function M.check(start)
7676
Config.mapleader = vim.g.mapleader
7777
end
7878

79+
if Loader.init_done and Config.maplocalleader ~= vim.g.maplocalleader then
80+
vim.schedule(function()
81+
require("lazy.core.util").warn("You need to set `vim.g.maplocalleader` **BEFORE** loading lazy")
82+
end)
83+
Config.maplocalleader = vim.g.maplocalleader
84+
end
85+
7986
if not (start or #changes == 0) then
8087
vim.schedule(function()
8188
if Config.options.change_detection.notify and not Config.headless() then

0 commit comments

Comments
 (0)