On Tue, Jan 6, 2009 at 2:45 AM, cflmish <[email protected]> wrote:
>
> *TeX and Metapost processes leave various files behind
> ( .log, .aux, .mpx, etc.) that are not needed once the source-and-
> product files are satisfactory. These files clutter directories and
> take time to delete.
>
> Many TeX oriented 'front end' text editors offer a "clean" macro to
> delete such files. Can someone point me to how this is/might be done
> in vim or latex-suite?
>
hi cflmish ,
i am not sure how this can be done from inside vim, but in general i
have a makefile {where i keep the .tex file} with a target clean, that
removes all the "leftover" files. When i type make clean it deletes
everything i don't want. Maybe something like this will help you:
$cat Makefile
.PHONY: clean
clean:
<tab> rm -f *.log *.aux *.mpx
i hope this helps,
nicolas
PS: i don't have the makefile in front of me, if i've made i typo
error , tell me and will copy-paste my makefile
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---