Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 501 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 501 Bytes

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