Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

plugin: visualise key presses within neovim window, useful for demos #30

Open
practicalli-johnny opened this issue Mar 13, 2025 · 2 comments

Comments

@practicalli-johnny
Copy link
Contributor

practicalli-johnny commented Mar 13, 2025

I have used screenkey for demos before and it can be useful to help people understand how I did something (without verbally describing all the key presses)

Having a screenkey tool within Neovim (and Emacs) saves setup and makes it easier to use.

https://github.com/NStefan002/screenkey.nvim looks a very good implementation to try out.

Image

The default window for screenkey.nvim is in the same location as the whichkey menu, so I may need to tweak locations.

If this plugin is good, then consider packaging for the Astrocommunity.

@practicalli-johnny
Copy link
Contributor Author

practicalli-johnny commented Mar 13, 2025

Adding the plugin config to lua/plugins/user-practicalli.lua, in the Editor tools section

  {
    "NStefan002/screenkey.nvim",
    lazy = false,
    version = "*", -- or branch = "dev", to use the latest commit
    opts = {
      group_mappings = true,
    },
  },

In the AstroNvim/astrocore plugin overrides later in the user-practicalli.lua file I've added a key binding for normal mode

          ["<Leader>uk"] = { "<cmd>ShowkeysToggle<cr>", desc = "Toggle Screenkey" },

There is a bug in this plugin when used with whichkey, where duplicate keys for motions and anything key triggering the whichkey menu

NStefan002/screenkey.nvim#47

@practicalli-johnny
Copy link
Contributor Author

practicalli-johnny commented Mar 13, 2025

I am using https://github.com/nvzone/showkeys plugin instead of screenkey.

Image

Showkeys doent have the duplicate key showing and was very easy to reposition (example in config)

I'm testing out the following config in lua/plugins/user-practicalli.lua

  {
    "nvzone/showkeys",
    lazy = false,
    cmd = "ShowkeysToggle",
    opts = {
      excluded_modes = { "i", "t" }, -- skip insert and terminal
      position = "bottom-center",
      show_count = true,
      maxkeys = 5,
      timeout = 5,
    },
  },

In the AstroNvim/astrocore plugin overrides later in the user-practicalli.lua file I've added a key binding for normal mode

          ["<Leader>uk"] = { "<cmd>ShowkeysToggle<cr>", desc = "Toggle Showkeys" },

@practicalli-johnny practicalli-johnny changed the title plugin: review screenkey - visualise key presses, useful for demos plugin: visualise key presses within neovim window, useful for demos Mar 14, 2025
practicalli-johnny added a commit that referenced this issue Mar 14, 2025
Add the nvzone/showkeys plugin and key binding to toggle the showkeys window

Resolve: #30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant