" Extra configuration for HTML files if &filetype != 'html' || &compatible || v:version < 700 finish endif " Use tidy(1) for checking and program formatting compiler tidy setlocal equalprg=tidy\ -quiet let b:undo_ftplugin = b:undo_ftplugin \ . '|unlet b:current_compiler' \ . '|setlocal equalprg<' \ . '|setlocal errorformat<' \ . '|setlocal makeprg<' " Set up hooks for timestamp updating augroup html_timestamp autocmd BufWritePre \ if exists('b:html_timestamp_check') \| call html#TimestampUpdate() \|endif augroup END let b:undo_ftplugin = b:undo_ftplugin \ . '|autocmd! html_timestamp BufWritePre ' " Stop here if the user doesn't want ftplugin mappings if exists('g:no_plugin_maps') || exists('g:no_html_maps') finish endif " Set mappings nnoremap r \ :call html#UrlLink() let b:undo_ftplugin = b:undo_ftplugin \ . '|nunmap r'