Skip to content

⚡ A Neovim plugin that displays available actions like 'Go to Definition' and 'Go to Reference(s)' for the highlighted word, presented in the statusline or inline as virtual text.

Notifications You must be signed in to change notification settings

roobert/action-hints.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 

Repository files navigation

⚡ Action Hints

action-hints Screenshot

A Neovim plugin that displays available actions like 'Go to Definition' and 'Go to Reference(s)' for the highlighted word, presented in the statusline or inline as virtual text.

Available hints:

  • - go-to-definition (gd) is available
  • reference list (gr) available / number of references

Installation

{
  "roobert/action-hints.nvim",
  config = function()
    require("action-hints").setup()
  end,
},

Configuration

{
  "roobert/action-hints.nvim",
  config = function()
    require("action-hints").setup({
      template = {
        definition = { text = "", color = "#add8e6" },
        references = { text = " ↱%s", color = "#ff6666" },
      },
      use_virtual_text = true,
    })
  end,
},

Usage

As a lualine component:

require("lualine").setup({
  sections = {
    lualine_x = { require("action-hints").statusline },
  },
})

About

⚡ A Neovim plugin that displays available actions like 'Go to Definition' and 'Go to Reference(s)' for the highlighted word, presented in the statusline or inline as virtual text.

Resources

Stars

Watchers

Forks

Languages