Commit b3637db 1 parent 9ba6661 commit b3637db Copy full SHA for b3637db
File tree 1 file changed +7
-11
lines changed
1 file changed +7
-11
lines changed Original file line number Diff line number Diff line change 14
14
vim .cmd ([[
15
15
let g:nvimgdb_disable_start_keymaps = 1
16
16
let g:nvimgdb_use_find_executables = 0
17
- let g:nvimgdb_use_cmake_to_find_executables = 0
17
+ let g:nvimgdb_use_cmake_to_find_executables = 1
18
18
let w:nvimgdb_termwin_command = "rightbelow vnew"
19
19
let w:nvimgdb_codewin_command = "vnew"
20
20
let g:nvimgdb_config_override = {
21
- \ 'key_next': ';n' ,
22
- \ 'key_step': ';s' ,
23
- \ 'key_finish': ';f' ,
24
- \ 'key_continue': ';c' ,
25
- \ 'key_until': ';u' ,
26
- \ 'key_breakpoint': ';b' ,
21
+ \ 'key_next': v:null ,
22
+ \ 'key_step': v:null ,
23
+ \ 'key_finish': v:null ,
24
+ \ 'key_continue': v:null ,
25
+ \ 'key_until': v:null ,
26
+ \ 'key_breakpoint': v:null ,
27
27
\ }
28
28
]] )
29
29
@@ -60,10 +60,6 @@ _G.CreateWatch = function()
60
60
vim .api .nvim_command (" :GdbCreateWatch " .. watch_arg )
61
61
end
62
62
63
- _G .SaveBreakpoints = function ()
64
- vim .api .nvim_command (" :Gdb save breakpoints .bps.txt" )
65
- end
66
-
67
63
_G .CloseWatchBuffers = function ()
68
64
vim .defer_fn (function ()
69
65
vim .api .nvim_command (" :bd! thread info" )
You can’t perform that action at this time.
0 commit comments