| Sun | Mon | Tue | Wed | Thu | Fri | Sat |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
When you want to make a colorful HTML out of a vim syntax highlighting and color scheme, you can use the following script.:runtime syntax/2html.vim There is also a perl package called text-vimcolor which you can call from CGIs. Example ViM rules! (from vim.org Tip#621) |
|
Not many people know there's a block comment functionality in MATLAB. %{ These are all commented. function call, for loop, everything. %} The default syntax file of vim 7 does not highlight these. Add the following lines to $VIM/syntax/matlab.vim syn region matlabBlockComment start=+%{+ end=+%}+ The syn region line has to come after the "syn match matlabComment" line.HiLink matlabBlockComment Comment |
|
In Vim 7.0, spelling module is included. Include the following line to .vimrc (or _vimrc in Windows) for automatic setting, and it will enable spell checking on *.tex and *.doc files. au BufRead *.tex,*.doc setlocal spell spelllang=en_usUse ]s and [s to search for misspelled words, z= for suggestions zg to add to dictionary |