Open the current file (or lines) in remote git repository.
Find a file
2022-09-27 03:36:44 +03:00
.github/workflows chore: add names for gh actions 2022-09-26 23:38:08 +03:00
doc chore: add doc folder 2022-09-27 03:06:28 +03:00
gifs chore: add gif demo to README.md 2022-09-27 03:29:50 +03:00
lua/openingh chore: support opening files with correct fine number 2022-09-27 01:37:15 +03:00
plugin chore: add setup method internaly 2022-09-26 23:53:18 +03:00
.luacheckrc chore: add actions to format and lint the code 2022-09-26 23:28:51 +03:00
.pre-commit-config.yaml chore: add pre-commit config 2022-09-26 23:46:12 +03:00
LICENSE chore: add LICENSE file 2022-09-27 01:43:30 +03:00
Makefile chore: initial commit 2022-09-25 23:30:27 +03:00
README.md chore: update README.md 2022-09-27 03:36:44 +03:00
stylua.toml chore: initial commit 2022-09-25 23:30:27 +03:00

openingh.nvim

Opens the current file or project page in GitHub.

  • Features

    • Supports MacOS, Linux, and maybe Windows 🤷‍♂️
    • Works with detached HEAD and supports checked out branches or forks
    • Automatically selects the correct line number in the file page
  • Demo

Requirements

  • Neovim 0.7.2+

Installation

Example with Packer

wbthomason/packer.nvim

  -- init.lua
  require("packer").startup(function()
    use "almo7aya/openingh.nvim"
  end)

Commands

  • :OpenInGHRepo

    • Opens the project's git repository page in GitHub.
  • :OpenInGHFile

    • Opens the current file page in GitHub.

Usage

You can call the commands directly or define mappings them:

-- for repository page
vim.api.nvim_set_keymap("n", "<Leader>gr", ":OpenInGHRepo <CR>", { expr = true, noremap = true })

-- for current file page
vim.api.nvim_set_keymap("n", "<Leader>gf", ":OpenInGHFile <CR>", { expr = true, noremap = true })

TODO

  • Support the current file cursor position
  • Support visual mode to open a file in range selection
  • Support support other version control websites

Contribution

Feel free to open an issue or a pull request if you have any suggestion or improvements

License

MIT