gitportal
will automatically open your current file in github, including any selected lines in the permalink.
gitportal
will accept shareable permalinks, switch to the proper commit or branch, open the file, and go to or highlight any relevant lines embedded in the permalink.
{ 'trevorhauter/gitportal.nvim' }
use { 'trevorhauter/gitportal.nvim' }
gitportal.nvim comes with the following defaults.
If you wish to keep these defaults, no configuration is required. If you wish to customize them, you must pass a dictionary of the options you'd like to override to the setup method. An example can be seen in my setup below.
{
-- When opening generating permalinks, whether to always include the current line in
-- the URL, regardless of visual mode.
always_include_current_line = false,
-- When ingesting permalinks, should gitportal always switch to the specified
-- branch or commit?
-- Can be "always", "ask_first", or "never"
switch_branch_or_commit_upon_ingestion = "always",
}
Here is a brief example of the available functions and how I have them set up in my personal config.
local gitportal = require("gitportal")
gitportal.setup({
always_include_current_line = true
})
-- open_file_in_browser() in normal mode
-- Opens the current file in your browser on the correct branch/commit.
vim.keymap.set("n", "<leader>gp", function() gitportal.open_file_in_browser() end)
-- open_file_in_browser() in visual mode
-- This behaves the same but it also includes the selected line(s) in the permalink.
vim.keymap.set("v", "<leader>gp", function() gitportal.open_file_in_browser() end)
-- open_file_in_neovim()
-- Requests a github link, optionally switches to the branch/commit, and
-- opens the specified file in neovim. Line ranges, if included, are respected.
vim.keymap.set('n', '<leader>ig', function() gitportal.open_file_in_neovim() end)
NOTE: Support for additional hosts will be added after release. If you'd like to use this plugin with a different web host, please open an issue. I'll do my best to add it quickly. I also welcome any and all contributions!
Feature | gitportal.nvim | vim-fugitive | vim-rhubarb | gitlinker.nvim |
---|---|---|---|---|
Open current file in browser, with optional line ranges | ✅ | ✅ | ✅ | ✅ |
Open permalinks in neovim, with respect to line range, branch, or commit | ✅ | ❌ | ❌ | ❌ |