diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-17 01:43:28 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-17 01:43:28 +0200 |
commit | ba1305772d6dc5939fd7fbad57108aa71ee2d158 (patch) | |
tree | 17fbd0d7dcd8f3f7847a953cb5d7eed98bd4cd65 /ftplugin/latex-suite/version.vim | |
parent | ff3cc42bf3ef067324364b5a40f2e457d202588c (diff) | |
download | vim-polyglot-ba1305772d6dc5939fd7fbad57108aa71ee2d158.tar.gz vim-polyglot-ba1305772d6dc5939fd7fbad57108aa71ee2d158.zip |
fix: Switch latex to LaTeX-Box-Team/LaTeX-Box, fixes #6
Diffstat (limited to 'ftplugin/latex-suite/version.vim')
-rw-r--r-- | ftplugin/latex-suite/version.vim | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/ftplugin/latex-suite/version.vim b/ftplugin/latex-suite/version.vim deleted file mode 100644 index 3da5ef42..00000000 --- a/ftplugin/latex-suite/version.vim +++ /dev/null @@ -1,30 +0,0 @@ -" Tex_Version: returns a string which gives the current version number of latex-suite -" Description: -" Each time a bug fix/addition is done in any source file in latex-suite, -" not just this file, the number below has to be incremented by the author. -" This will ensure that there is a single 'global' version number for all of -" latex-suite. -" -" If a change is done in the doc/ directory, i.e an addition/change in the -" documentation, then this number should NOT be incremented. -" -" Latex-suite will follow a 3-tier system of versioning just as Vim. A -" version number will be of the form: -" -" X.Y.ZZ -" -" 'X' will only be incremented for a major over-haul or feature addition. -" 'Y' will be incremented for significant changes which do not qualify -" as major. -" 'ZZ' will be incremented for bug-fixes and very trivial additions such -" as adding an option etc. Once ZZ reaches 50, then Y will be -" incremented and ZZ will be reset to 01. Each time we have a -" version number of the form X.Y.01, then we'll make a release on -" vim.sf.net and also create a cvs tag at that point. We'll try to -" "stabilize" that version by releasing a few pre-releases and then -" keep that as a stable point. -function! Tex_Version() - return "Latex-Suite: version 1.8.23" -endfunction - -com! -nargs=0 TVersion echo Tex_Version() |