diff options
| author | 2025-11-28 01:52:34 +0300 | |
|---|---|---|
| committer | 2025-11-28 01:52:34 +0300 | |
| commit | 081881b714e83bf4330e0a31991966cbf67d931a (patch) | |
| tree | 52a10e627572d80c89ce553c2bc2d76018db8e63 /config/nvim/lua/plugins/dap_go.lua | |
| parent | gitverse (diff) | |
| download | dotfiles-081881b714e83bf4330e0a31991966cbf67d931a.tar.gz dotfiles-081881b714e83bf4330e0a31991966cbf67d931a.tar.bz2 dotfiles-081881b714e83bf4330e0a31991966cbf67d931a.tar.xz dotfiles-081881b714e83bf4330e0a31991966cbf67d931a.zip | |
Небольшие апдейты
Diffstat (limited to '')
| -rw-r--r-- | config/nvim/lua/plugins/dap_go.lua | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/config/nvim/lua/plugins/dap_go.lua b/config/nvim/lua/plugins/dap_go.lua index 262aef8..0864da1 100644 --- a/config/nvim/lua/plugins/dap_go.lua +++ b/config/nvim/lua/plugins/dap_go.lua @@ -104,55 +104,4 @@ return { { text = "→", texthl = "DapStopped", linehl = "DapStopped", numhl = "DapStopped" } ) end, - keys = { - { - "<F5>", - function() - require("dap").continue() - end, - silent = true, - }, - { - "<F17>", -- S-F5 - function() - require("dap").restart() - end, - silent = true, - }, - { - "<F29>", -- C-F5 - function() - require("dap").terminate() - end, - silent = true, - }, - { - "<F8>", - function() - require("dap").step_over() - end, - silent = true, - }, - { - "<F7>", - function() - require("dap").step_into() - end, - silent = true, - }, - { - "<F19>", -- S-F7 - function() - require("dap").step_out() - end, - silent = true, - }, - { - "<A-b>", - function() - require("dap").toggle_breakpoint() - end, - silent = true, - }, - }, } |
