base46 icon indicating copy to clipboard operation
base46 copied to clipboard

Update dap.lua

Open WayneYam opened this issue 7 months ago • 0 comments

Made the highlighting better

Note that, due to the fact that all breakpoint signs uses the "SignColumn" highlight group, the following is needed in config to have the breakpoint highlighting functional.

            vim.fn.sign_define('DapBreakpoint', {text='B', texthl='DapBreakpoint', linehl='', numhl=''})
            vim.fn.sign_define('DapBreakpointCondition', {text='C', texthl='DapBreakpointCondition', linehl='', numhl=''})
            vim.fn.sign_define('DapBreakpointRejected', {text='R', texthl='DapBreakpointRejected', linehl='', numhl=''})
            vim.fn.sign_define('DapLogPoint', {text='L', texthl='DapLogPoint', linehl='', numhl=''})
            vim.fn.sign_define('DapStopped', {text='→', texthl='DapStopped', linehl='', numhl=''})

WayneYam avatar Jul 20 '24 12:07 WayneYam