All Projects → notomo → piemenu.nvim

notomo / piemenu.nvim

Licence: MIT license
Pie menu plugin for neovim

Programming Languages

lua
6591 projects
Makefile
30231 projects

Labels

piemenu.nvim

piemenu.nvim is a circular menu plugin for Neovim (nightly).

Example

vim.opt.mouse = "a"

local group = vim.api.nvim_create_augroup("piemenu_setting", {})
vim.api.nvim_create_autocmd({ "FileType" }, {
  group = group,
  pattern = { "piemenu" },
  callback = function()
    vim.o.mousemoveevent = true
    vim.keymap.set("n", "<MouseMove>", [[<Cmd>lua require("piemenu").highlight()<CR>]], { buffer = true })
    vim.keymap.set("n", "<LeftDrag>", [[<Cmd>lua require("piemenu").highlight()<CR>]], { buffer = true })
    vim.keymap.set("n", "<LeftRelease>", [[<Cmd>lua require("piemenu").finish()<CR>]], { buffer = true })
    vim.keymap.set("n", "<RightMouse>", [[<Cmd>lua require("piemenu").cancel()<CR>]], { buffer = true })
  end,
})

vim.keymap.set("n", "<RightMouse>", [[<LeftMouse><Cmd>lua require("piemenu").start("example")<CR>]])
require("piemenu").register("example", {
  menus = {
    {
      text = "📋 copy",
      action = function()
        vim.cmd.normal({ args = { "yy" }, bang = true })
      end,
    },
    {
      text = "📝 paste",
      action = function()
        vim.cmd.normal({ args = { "p" }, bang = true })
      end,
    },
    {
      text = "✅ save",
      action = function()
        vim.cmd.write()
      end,
    },
    {
      text = "👉 goto file",
      action = function()
        vim.cmd.normal({ args = { "gF" }, bang = true })
      end,
    },
    {
      text = "📚 help",
      action = function()
        vim.cmd.help(vim.fn.expand("<cword>"))
      end,
    },
    {
      text = "❌ close",
      action = function()
        vim.cmd.quit()
      end,
    },
  },
})

-- start by gesture.nvim (optional)
local piemenu = require("piemenu")
local gesture = require("gesture")
gesture.register({
  name = "open pie menu",
  inputs = { gesture.up() },
  action = function(ctx)
    piemenu.start("gesture_example", { position = ctx.last_position })
  end,
})

piemenu.register("gesture_example", {
  menus = {
    {
      text = "🆕 new tab",
      action = function()
        vim.cmd.tabedit()
      end,
    },
    {
      text = "🏠 open vimrc",
      action = function()
        vim.cmd.edit(vim.env.MYVIMRC)
      end,
    },
    {
      text = "🔃 reload",
      action = function()
        vim.cmd.edit({ bang = true })
      end,
    },
    {
      text = "😃 smile",
      action = function()
        vim.cmd.smile()
      end,
    },
  },
})
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].