File tree 4 files changed +14
-1
lines changed
4 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ require("lazy").setup(plugins, opts)
67
67
``` lua
68
68
-- Example using a list of specs with the default options
69
69
vim .g .mapleader = " " -- Make sure to set `mapleader` before lazy so your mappings are correct
70
+ vim .g .maplocalleader = " \\ " -- Same for `maplocalleader`
70
71
71
72
require (" lazy" ).setup ({
72
73
" folke/which-key.nvim" ,
@@ -537,7 +538,7 @@ Any command can have a **bang** to make the command wait till it finished. For e
537
538
if you want to sync lazy from the cmdline, you can use:
538
539
539
540
``` shell
540
- $ nvim --headless " +Lazy! sync" +qa
541
+ nvim --headless " +Lazy! sync" +qa
541
542
```
542
543
543
544
` opts ` is a table with the following key-values:
Original file line number Diff line number Diff line change @@ -199,6 +199,9 @@ M.me = nil
199
199
--- @type string
200
200
M .mapleader = nil
201
201
202
+ --- @type string
203
+ M .maplocalleader = nil
204
+
202
205
function M .headless ()
203
206
return # vim .api .nvim_list_uis () == 0
204
207
end
@@ -245,6 +248,7 @@ function M.setup(opts)
245
248
-- disable plugin loading since we do all of that ourselves
246
249
vim .go .loadplugins = false
247
250
M .mapleader = vim .g .mapleader
251
+ M .maplocalleader = vim .g .maplocalleader
248
252
249
253
if M .headless () then
250
254
require (" lazy.view.commands" ).setup ()
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ function M.setup()
50
50
Util .track ()
51
51
end
52
52
Config .mapleader = vim .g .mapleader
53
+ Config .maplocalleader = vim .g .maplocalleader
53
54
54
55
-- report any warnings & errors
55
56
Config .spec :report ()
Original file line number Diff line number Diff line change @@ -76,6 +76,13 @@ function M.check(start)
76
76
Config .mapleader = vim .g .mapleader
77
77
end
78
78
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
+
79
86
if not (start or # changes == 0 ) then
80
87
vim .schedule (function ()
81
88
if Config .options .change_detection .notify and not Config .headless () then
You can’t perform that action at this time.
0 commit comments