Skip to content

reegnz/gx-extended.nvim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 

Repository files navigation

⭐ gx-extended.nvim

A Neovim plugin that extends the functionality of the gx mapping. In Neovim, the gx mapping in normal mode allows you to navigate to the url under the cursor. This plugin extends that behaviour to more than just urls.

🎉 Built-in Features

🚀 Showcase

Opening the registry docs for aws terraform resources

Screen.Recording.2023-04-05.at.8.44.16.PM.mov

📦 Installation

use {
  'rmagatti/gx-extended.nvim',
  config = function()
    require('gx-extended').setup {}
  end
}

⚙️ Configuring

You can pass custom extensions to the extensions table. Each extension should have at least two properties:

  1. patterns: a list of file glob patterns to run the autocommands for
    • Important: The plugin matches the glob on the file path of the current file now; meaning for example that setting plugins.lua won't match correctly but *plugins.lua will.
  2. match_to_url: a function to run the match and return the composed url to be used by the gx command
  3. name: the name to be shown in a picker in case of handler/extension conflicts

The following is an example of hitting gx on a terraform file on a line where an aws resource is defined and opening your browser directly on the terraform registry documentation for the specific resource.

use {
  'rmagatti/gx-extended.nvim',
  config = function()
    require("gx-extended").setup {
      extensions = {
        { -- match github repos in lazy.nvim plugin specs
          patterns = { '*/plugins/**/*.lua' },
          name = "neovim plugins",
          match_to_url = function(line_string)
            local line = string.match(line_string, '["|\'].*/.*["|\']')
            local repo = vim.split(line, ':')[1]:gsub('["|\']', '')
            local url = 'https://github.com/' .. repo
            return line and repo and url or nil
          end,
        }
      },
    }
  end
}

By default, gx-extended uses netrw to open urls. You can pass a custom open function to config to change this behaviour. For example, if you use lazy.nvim, you can configure gx-extended to use it's open function:

return { 'rmagatti/gx-extended.nvim',
  keys = { 'gx' },
  opts = {
    open_fn = require'lazy.util'.open,
  }
}

TODOs

  • Implement visual mode

Inspiration/Alternatives

https://github.com/stsewd/gx-extended.vim

About

Extending the use of Neovim's `gx`

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 100.0%