ofirgall/goto-breakpoints.nvim

github github
debugging
stars 28
issues 0
subscribers 1
forks 0
CREATED

2022-08-18

UPDATED

6 months ago


Goto breakpoints

Simple plugin to cycle between nvim-dap's breakpoints and jump to current stopped line with keymappings.

Install

Using packer.nvim

use 'ofirgall/goto-breakpoints.nvim'

Usage

local map = vim.keymap.set
map('n', ']d', require('goto-breakpoints').next, {})
map('n', '[d', require('goto-breakpoints').prev, {})
map('n', ']S', require('goto-breakpoints').stopped, {})