Skip to content

A simple neovim plugin that use treesitter to find resource in context and open the url on your favorite web browser.

License

Notifications You must be signed in to change notification settings

Afourcat/treesitter-terraform-doc.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Treesitter Terraform Doc

This is a simple plugin to open documentation of the current Terraform resource.

Features

Add the "OpenDoc" user command that opens the documentation of the resource targeted by the cursor in a terraform "hcl" file, directly into your default browser.

Requirements

Installation

  1. Install from your favorite package manager.
  2. Add the following to your terraform lsp config:
require('lspconfig').terraformls.setup {
    on_attach = function()
        -- This register the user command "OpenDoc" that you are able to bind to any key.
        require('treesitter-terraform-doc').setup()
        ...
    end,
    ...
}

Here is another example with the default config:

require('treesitter-terraform-doc').setup({
    -- The vim user command that will trigger the plugin.
    command_name       = "OpenDoc",

    -- The command that will take the url as a parameter.
    url_opener_command = "!open"

    -- If true, the cursor will jump to the anchor in the documentation.
    jump_argument      = true
})

For example, on linux you could change it to:

require('treesitter-terraform-doc').setup({
    command_name       = "OpenDoc",
    url_opener_command = "!firefox"
    jump_argument      = true
})

in order to run the command with firefox.

Custom Provider

You can add or override provider by adding the following to your config:

require('treesitter-terraform-doc').setup({
    ...,
    provider = {
        prefix = "test",
        name   = "custom-provider-source"
    }
})

About

A simple neovim plugin that use treesitter to find resource in context and open the url on your favorite web browser.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages