"====================================================================== " " task_mode.vim - " " Created by skywind on 2024/03/16 " Last Modified: 2024/03/16 19:26:38 " "====================================================================== "---------------------------------------------------------------------- " "---------------------------------------------------------------------- function! module#mode#task_mode#help() return 'F1-F4: task-f1, task-f2, task-f3, task-f4' endfunc "---------------------------------------------------------------------- " "---------------------------------------------------------------------- function! module#mode#task_mode#init() noremap :AsyncTask task-f1 noremap :AsyncTask task-f2 noremap :AsyncTask task-f3 noremap :AsyncTask task-f4 inoremap :AsyncTask task-f1 inoremap :AsyncTask task-f2 inoremap :AsyncTask task-f3 inoremap :AsyncTask task-f4 endfunc "---------------------------------------------------------------------- " "---------------------------------------------------------------------- function! module#mode#task_mode#quit() endfunc