소스 검색

fix(dap): invalid border value (#3951)

Jieru Mei 2 년 전
부모
커밋
76040d25ff
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lua/lvim/core/dap.lua

+ 1 - 1
lua/lvim/core/dap.lua

@@ -82,7 +82,7 @@ M.config = function()
         floating = {
           max_height = 0.9,
           max_width = 0.5, -- Floats will be treated as percentage of your screen.
-          border = vim.g.border_chars, -- Border style. Can be 'single', 'double' or 'rounded'
+          border = "rounded",
           mappings = {
             close = { "q", "<Esc>" },
           },