No description
Find a file
2023-02-14 00:08:47 +00:00
lua/telescope/_extensions Added comment for LuaJIT 2023-02-14 00:08:47 +00:00
.stylua.toml initial commit 2022-11-16 22:24:05 -05:00
readme.md open url based on OS 2023-02-13 23:37:17 +00:00

telescope-http.nvim

Quickly investigate HTTP status codes with the help of telescope.nvim and mozilla.

Installation

Install via your favorite package manager, like paq:

require 'paq' {
    'savq/paq-nvim',
    'barrett-ruth/telescope-http.nvim'
}

Then load the extension:

require('telescope').load_extension 'http'

Dependencies

Configuration

require('telescope').setup {
    extensions = {
        http = {
            -- How the mozilla url is opened. By default will be configured based on OS:
            open_url = 'xdg-open %s' -- UNIX
            -- open_url = 'open %s' -- OSX
            -- open_url = 'start %s' -- Windows
        }
    }
}

Usage

Creating a mapping for the following command in vim:

:Telescope http list

or lua:

require('telescope').extensions.http.list()