If I set a custom make program, is there any way to provide a list of tab completion options that would get activated when I type :make+Space+Tab?
With custom commands I can do f.i.:
command! -nargs=* -complete=customlist,MakeComplete -bar MakeGitbook call MakeGitbook(<q-args>) Is there any similar mechanism for builtin commands, and in particular for :make? Or should I just define a custom command wrapper that calls the built in one but also adds tab completion?
-complete=customlist,MakeCompletealreeady does what you want? I don't quite understand where you're stuck or what does't work like you want.