diff --git a/runtime/filetype.vim b/runtime/filetype.vim index e1354a503a..d53a2126f2 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1676,7 +1676,9 @@ au BufNewFile,BufRead *.msql setf msql au BufNewFile,BufRead *.mysql,.mysql_history setf mysql " Tcl Shell RC file -au BufNewFile,BufRead tclsh.rc setf tcl +" Vivado journal file records REPL input in tcl syntax +" Vivado log file records REPL input in tcl syntax and output +au BufNewFile,BufRead tclsh.rc,vivado*.{jou,log} setf tcl " M$ Resource files " /etc/Muttrc.d/file.rc is muttrc diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim index 829ba8f2ee..ee0eaa0950 100644 --- a/src/testdir/test_filetype.vim +++ b/src/testdir/test_filetype.vim @@ -823,7 +823,8 @@ def s:GetFilenameChecks(): dict> tal: ['file.tal'], taskdata: ['pending.data', 'completed.data', 'undo.data'], taskedit: ['file.task'], - tcl: ['file.tcl', 'file.tm', 'file.tk', 'file.itcl', 'file.itk', 'file.jacl', '.tclshrc', 'tclsh.rc', '.wishrc', '.tclsh-history', '.xsctcmdhistory', '.xsdbcmdhistory'], + tcl: ['file.tcl', 'file.tm', 'file.tk', 'file.itcl', 'file.itk', 'file.jacl', '.tclshrc', 'tclsh.rc', '.wishrc', '.tclsh-history', + '.xsctcmdhistory', '.xsdbcmdhistory', 'vivado.jou', 'vivado.log'], teal: ['file.tl'], templ: ['file.templ'], template: ['file.tmpl'], diff --git a/src/version.c b/src/version.c index 18623c88ea..aa3897faa0 100644 --- a/src/version.c +++ b/src/version.c @@ -724,6 +724,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1730, /**/ 1729, /**/