summaryrefslogtreecommitdiff
path: root/src/keymap_manager.cc
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2024-08-09 18:16:51 +1000
committerMaxime Coste <mawww@kakoune.org>2024-08-12 20:02:11 +1000
commit1a52006c3d215196997a2cd12450795d4ae4a1ca (patch)
tree9cae5c08d6fa0a0ec4017b6a0156e64924eeb898 /src/keymap_manager.cc
parent2d9886afe76adde9f33fc0c0454146176857a6f2 (diff)
Extract format implementation to its own file
Split it to avoid pulling all string_utils dependencies for just format.
Diffstat (limited to 'src/keymap_manager.cc')
-rw-r--r--src/keymap_manager.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keymap_manager.cc b/src/keymap_manager.cc
index 582a271d..583fb2e7 100644
--- a/src/keymap_manager.cc
+++ b/src/keymap_manager.cc
@@ -3,7 +3,7 @@
#include "array_view.hh"
#include "assert.hh"
#include "exception.hh"
-#include "string_utils.hh"
+#include "format.hh"
#include <algorithm>