From 395ad71b307a92f2b55180e169b829723086109c Mon Sep 17 00:00:00 2001 From: Asep Komarudin <68836805+pojokcodeid@users.noreply.github.com> Date: Wed, 1 Mar 2023 11:36:54 +0700 Subject: [PATCH] Updated 7. Contoh Custom Plugins (markdown) --- 7.-Contoh-Custom-Plugins.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/7.-Contoh-Custom-Plugins.md b/7.-Contoh-Custom-Plugins.md index 88a8a4f..18de55d 100644 --- a/7.-Contoh-Custom-Plugins.md +++ b/7.-Contoh-Custom-Plugins.md @@ -1289,6 +1289,16 @@ return{ keymap("n", "", ":silent only | Jaq", opts) return M end, +} +``` +- tambahkan lua/custom whichkey.lua +```lua +return{ +["r"] = { + name = "Run", + j = { "Jaq float", "Run With Jaq" }, +}, + } ``` summer: