From 2546883543919badaf08e5a8209790ad8df57c52 Mon Sep 17 00:00:00 2001 From: Patrick Wulfe Date: Sat, 3 Jul 2021 12:23:05 -0700 Subject: [PATCH] The dart config was setting the 'flutter-run-or-hot-reload' keybind with init, so if you changed the localleader in your settings, it would stay as SPC m rather than what localleader was mapped to --- modules/lang/dart/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lang/dart/config.el b/modules/lang/dart/config.el index 5fcda378b..65e447fcc 100644 --- a/modules/lang/dart/config.el +++ b/modules/lang/dart/config.el @@ -31,7 +31,7 @@ (use-package! flutter :when (featurep! +flutter) :defer t - :init + :config (map! :map dart-mode-map :localleader "r" #'flutter-run-or-hot-reload))