This repository has been archived by the owner on Jan 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6eba38e
commit 12f3ca2
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
" Vim syntax support file | ||
" Maintainer: Bram Moolenaar <[email protected]> | ||
" Last Change: 2003 May 31 | ||
" (modified by David Ne\v{c}as (Yeti) <[email protected]>) | ||
|
||
" Transform a file into HTML, using the current syntax highlighting. | ||
" | ||
" Maintainer: William Entriken <[email protected]> | ||
" Last Change: 2014 Sep 1 | ||
" Forked from: 2html.vim / Bram Moolenaar / 2003 May 31 | ||
" | ||
" Transforms a file into HTML, using the current syntax highlighting. | ||
" Outputs semantic HTML, with style to be applied separately | ||
" | ||
" Pass FILE as environmental variable to set output file | ||
" | ||
|
||
redir > cache/vimoutput.txt | ||
let term="gui" | ||
|
@@ -17,12 +20,9 @@ syn on | |
set notitle noicon | ||
setlocal et | ||
set report=1000000 | ||
let " debug | ||
|
||
" Split window to create a buffer with the HTML file. | ||
new $FILE | ||
"new cache/tmp.html | ||
"set modifiable | ||
%d | ||
set paste | ||
set magic | ||
|