]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/doc/textile.txt
Merge branch 'main' of gitlab.com:rbdr/dotfiles
[rbdr/dotfiles] / vim / doc / textile.txt
CommitLineData
0d23b6e5
BB
1*textile.txt* Textile for Vim Last Change: November 3, 2008
2
3==============================================================================
4REQUIREMENTS *textile-requirements*
5
6- ruby - http://ruby-lang.org/ (seperate executable, not compiled in)
7- RedCloth - http://redcloth.org/
8
9Files with the extension *.textile will auto-detected. If editing a new file,
10or otherwise, run ":setf textile" to enable textile commands.
11
12
13==============================================================================
14CHANGELOG *textile-changelog*
15
160.3 - Fixed keymappings in the documentation
170.2 - Added multiple colors for headers, and alternating colors for list
18 items
19 - Fixed error in the vim script for TextileRenderBufferToFile
20 - Changed shortcut keys from \tp to \rp (render preview instead of
21 textile preview, since it's file-type specific anyways)
220.1 - Initial Release
23
24==============================================================================
25COMMANDS *textile-commands*
26
27:TextilePreview - Render the current buffer to a temp file, and open it in
28 your web browser (OSX only)
29
30 <Leader>rp
31
32:TextileRenderTab - ... to a new tab
33
34 <Leader>rt
35
36:TextileRenderFile - ... to a file
37
38 <Leader>rf
39
40<Leader> is \ by default, so <Leader>rp == \rp
41
42==============================================================================
43CONFIG *textile-config*
44
45MAC OS X:
46
47 Optional:
48 set g:TextileBrowser="Google Chrome" - Open preview in "Google Chrome"
49 rather than Safari (optional)
50
51Other:
52
53 Mandatory:
54 set g:TextileOS="Linux"
55 set g:TextileBrowser="/path/to/browser_bin"
56
57
58==============================================================================
59CREDITS *textile-credits*
60
61- "Dominic Mitchell":http://happygiraffe.net/: initial syntax highlighting
62- "Aaron Bieber":http://blog.aaronbieber.com/: improved syntax highlighting
63- "Tim Harper":http://tim.theenchanter.com/ : improved syntax highlighting,
64 plugin
65
66vim:tw=78:noet:wrap:ts=2:expandtab:ft=help:norl: