From 7163bc9a753f6739640ed274782bea619e373788 Mon Sep 17 00:00:00 2001 From: NovaViper Date: Thu, 9 Jan 2025 11:38:30 -0600 Subject: [PATCH] tmuxPlugins.which-key: init at unstable-2024-06-08 --- pkgs/misc/tmux-plugins/default.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index 39aabfb30332ee..da6b3705d8540a 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -882,6 +882,26 @@ in rec { }; }; + which-key = mkTmuxPlugin { + pluginName = "which-key"; + rtpFilePath = "plugin.sh.tmux"; + version = "unstable-2024-06-08"; + src = fetchFromGitHub { + owner = "alexwforsythe"; + repo = "tmux-which-key"; + rev = "1f419775caf136a60aac8e3a269b51ad10b51eb6"; + hash = "sha256-X7FunHrAexDgAlZfN+JOUJvXFZeyVj9yu6WRnxMEA8E="; + }; + + meta = { + homepage = "https://github.com/alexwforsythe/tmux-which-key"; + description = "A plugin for tmux that allows users to select actions from a customizable popup menu. Inspired by vscode-which-key, emacs-which-key, and which-key.nvim"; + license = lib.licenses.mit; + platforms = lib.platforms.unix; + maintainers = with lib.maintainers; [ novaviper ]; + }; + }; + yank = mkTmuxPlugin { pluginName = "yank"; version = "unstable-2023-07-19";