File: README

package info (click to toggle)
vim-subtitles 1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 196 kB
  • sloc: makefile: 2
file content (30 lines) | stat: -rw-r--r-- 1,399 bytes parent folder | download
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


QUICK INSTALL:

1. Copy sub.vim file to /usr/share/vim/vim61/syntax directory (path depends
   on version of vim you are using).
2. Add those lines to your ~/.vimrc file:
   " Syntax highlighting for subtitle files in MicroDVD (sub) format
   au BufNewFile,BufRead *.sub setf sub
3. Now you can open some .sub file and syntax highlighting should be working.


Vim is extended and improved version of one of the first full screen text
editors which today comes with all unix like systems. Among huge number of
options which makes vim very powerful text editor, vim also supports syntax
highlighting which is implemented on the way which makes creating new, or
modifying existing highlighting extensions very easy.

I was playing with divx for some time and sometimes I had to modify .sub
files. Some specialized editors for .sub files imports their own extensions
which could not be understood by divx players I used. To make errors like this
or missing brackets easier to encounter, I wrote a syntax file for vim which
helped me a lot and maybe will be of use to somebody else.

To make coloring syntax of .sub files working, you just have to copy sub.vim
to the /usr/share/vim/vim61/syntax directory (path depends on version of vim
you have) and to add those lines to your ~/.vimrc file:
  " Syntax highlighting for subtitle files in MicroDVD (sub) format
  au BufNewFile,BufRead *.sub setf sub