Home

Awesome

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, {})