Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 802 Bytes

README.md

File metadata and controls

37 lines (31 loc) · 802 Bytes

GoToTestFile.nvim

Table of Contents


Requirements

  • Neovim >= 0.9.0
  • fd
  • git
  • rg
  • realpath

Installation

Install the plugin with your preferred package manager.

{
    'jtzero/go-to-test-file.nvim',
    lazy = false,
    config = true,
    keys = {
      {
        '<M-T>',
        '<cmd>FindTestOrSourceCodeFileWithFallback<CR>',
        mode = { "n" },
        desc = 'Opens a corresponding test file or source file if not found opens the test folder',
      },
    },
}

Known Issues