Re: [Vim-latex-devel] coding standards?
Brought to you by:
srinathava,
tmaas
From: Benji F. <be...@me...> - 2002-12-13 14:21:19
|
Srinath Avadhanula wrote: > >>3. Should we try for consistent time stamps? If so, is there a script >>for updating them? Or should we let CVS take care of that, and stop >>cluttering the diff files with changed time stamps? >> > For now, Mikolaj and me use lastchange.vim from: > > http://vim.sourceforge.net/script.php?script_id=259 The strftime() function is not standard. :-( On my Linux system, strftime('%Z') returns "EST", so I replaced let timezone = substitute(strftime('%Z'), '\<\(\w\)\(\w*\)\>\(\W\|$\)', '\1', 'g') with let timezone = strftime('%Z') You might want to change the posted version to let timezone = strftime('%Z') if has("win32") let timezone = substitute(...) endif --Benji |