From 84eaaae9ab7658cc79c9cf87f34070963830bb03 Mon Sep 17 00:00:00 2001 From: Iron-E Date: Mon, 16 May 2022 14:54:03 -0400 Subject: [PATCH] chore(Layer): remove unused function --- lua/libmodal/src/Layer.lua | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lua/libmodal/src/Layer.lua b/lua/libmodal/src/Layer.lua index c41ccb2..b826dfd 100644 --- a/lua/libmodal/src/Layer.lua +++ b/lua/libmodal/src/Layer.lua @@ -11,16 +11,6 @@ local function normalize_buffer(buffer) return buffer end ---- remove and return the right-hand side of a `keymap`. ---- @param keymap table the keymap to unpack ---- @return string lhs, table options -local function unpack_keymap_lhs(keymap) - local lhs = keymap.lhs - keymap.lhs = nil - - return lhs, keymap -end - --- remove and return the right-hand side of a `keymap`. --- @param keymap table the keymap to unpack --- @return function|string rhs, table options