How do I do this? The manual doesn't explain or give an example.
I think you e.g. have to edit the section in the filetypes files. E.g. find below the ```build-menu``` section from ```filetypes.c```: ``` [build-menu] # %f will be replaced by the complete filename # %e will be replaced by the filename without extension # (use only one of it at one time) FT_00_LB=_Compile FT_00_CM=gcc -Wall -c "%f" FT_00_WD= FT_01_LB=_Build FT_01_CM=gcc -Wall -o "%e" "%f" FT_01_WD= FT_02_LB=_Lint FT_02_CM=cppcheck --language=c --enable=warning,style --template=gcc "%f" FT_02_WD= EX_00_LB=_Execute EX_00_CM="./%e" EX_00_WD= ```