"====================================================================== " " gdb_mode.vim - " " Created by skywind on 2024/03/14 " Last Modified: 2024/03/14 23:50:14 " "====================================================================== "---------------------------------------------------------------------- " "---------------------------------------------------------------------- function! module#mode#gdb_mode#help() return 'F1: Info Locals, F2: Until, F3: Step, F4: Next' endfunc "---------------------------------------------------------------------- " "---------------------------------------------------------------------- function! module#mode#gdb_mode#init() noremap :call TermDebugSendCommand('info locals') noremap :Until noremap :Step noremap :Over endfunc "---------------------------------------------------------------------- " "---------------------------------------------------------------------- function! module#mode#gdb_mode#quit() endfunc