X-Git-Url: http://pileus.org/git/?p=vpaste;a=blobdiff_plain;f=2html.patch;h=0eaf9c5b4e17ad26e752546b071bb48783cd17ed;hp=f1181ba2553a0811feb887933c2460228a41da8c;hb=HEAD;hpb=dbcb942c4ddfe6d48dff69202c9a32fb3cc6918c diff --git a/2html.patch b/2html.patch index f1181ba..0eaf9c5 100644 --- a/2html.patch +++ b/2html.patch @@ -1,8 +1,8 @@ ---- /usr/share/vim/vim72/syntax/2html.vim 2009-12-03 18:45:27.000000000 +0000 -+++ /home/andy/.vim/syntax/2html.vim 2009-11-23 04:52:46.000000000 +0000 -@@ -22,6 +22,13 @@ - let s:htmlfont = "monospace" - endif +--- /usr/share/vim/vim73/syntax/2html.vim 2010-08-28 18:59:26.000000000 +0000 ++++ /home/andy/.vim/syntax/2html.vim 2010-08-31 04:34:00.000000000 +0000 +@@ -33,6 +33,13 @@ + + let s:settings = tohtml#GetUserSettings() +" Whitespace +if &wrap @@ -14,66 +14,68 @@ " When not in gui we can only guess the colors. if has("gui_running") let s:whatterm = "gui" -@@ -192,7 +199,6 @@ - let s:old_report = &report +@@ -211,7 +218,6 @@ let s:old_search = @/ + let s:old_more = &more set notitle noicon -setlocal et + set nomore set report=1000000 - - " Split window to create a buffer with the HTML file. -@@ -245,7 +251,7 @@ - " HTML header, with the title and generator ;-). Left free space for the CSS, - " to be filled at the end. - exe "normal! a\n\e" --exe "normal! a\n" . expand("%:p:~") . "\n\e" -+exe "normal! a\n" . &titlestring . "\n\e" - exe "normal! a\n\n\e" + setlocal noscrollbind +@@ -298,7 +304,7 @@ + call add(s:lines, "".expand("%:p:~").""), ++ \ ("".&titlestring.""), + \ ("", ""]) else -- exe "normal! a\n\n
\n\e"
-+  exe "normal! a\n
\n\e"
+-  call extend(s:lines, ["", "", "
"])
++  call extend(s:lines, ["", "
"])
  endif
  
  exe s:orgwin . "wincmd w"
-@@ -393,12 +399,16 @@
- 
-       " Expand tabs
-       let s:expandedtab = strpart(s:line, s:startcol - 1, s:col - s:startcol)
--      let idx = stridx(s:expandedtab, "\t")
--      while idx >= 0
--	let i = &ts - ((idx + s:startcol - 1) % &ts)
--	let s:expandedtab = substitute(s:expandedtab, '\t', repeat(' ', i), '')
--	let idx = stridx(s:expandedtab, "\t")
--      endwhile
-+      if &et
-+        let idx = stridx(s:expandedtab, "\t")
-+        while idx >= 0
-+          let i = &ts - ((idx + s:startcol - 1) % &ts)
-+          let s:expandedtab = substitute(s:expandedtab, '\t', repeat(' ', i), '')
-+          let idx = stridx(s:expandedtab, "\t")
-+        endwhile
-+      else
-+        setlocal isprint+=9
-+      endif
+@@ -873,6 +879,7 @@
+       if s:settings.ignore_conceal || !s:concealinfo[0]
+ 	" Expand tabs
+ 	let s:expandedtab = strpart(s:line, s:startcol - 1, s:col - s:startcol)
++	if &expandtab
+ 	let s:offset = 0
+ 	let s:idx = stridx(s:expandedtab, "\t")
+ 	while s:idx >= 0
+@@ -895,6 +902,9 @@
+ 	  let s:expandedtab = substitute(s:expandedtab, '\t', repeat(' ', s:i), '')
+ 	  let s:idx = stridx(s:expandedtab, "\t")
+ 	endwhile
++	else
++	  setlocal isprint+=9
++	end
  
-       " Output the text with the same synID, with class set to {s:id_name}
-       let s:id = synIDtrans(s:id)
-@@ -423,7 +433,7 @@
- if exists("html_no_pre")
-   exe "normal! a\n\e"
+ 	" get the highlight group name to use
+ 	let s:id = synIDtrans(s:id)
+@@ -945,12 +955,12 @@
+ if s:settings.no_pre
+   if !s:settings.use_css
+     " Close off the font tag that encapsulates the whole 
+-    call extend(s:lines, ["", "", ""])
++    call extend(s:lines, [""])
+   else
+-    call extend(s:lines, ["", ""])
++    call extend(s:lines, [""])
+   endif
  else
--  exe "normal! a
\n\n\e" -+ exe "normal! a
\n\e" +- call extend(s:lines, ["
", "", ""]) ++ call extend(s:lines, ["
"]) endif - -@@ -449,7 +459,7 @@ - if exists("html_no_pre") + exe s:newwin . "wincmd w" +@@ -979,7 +989,7 @@ + if s:settings.no_pre execute "normal! A\nbody { color: " . s:fgc . "; background-color: " . s:bgc . "; font-family: ". s:htmlfont ."; }\e" else - execute "normal! A\npre { font-family: ". s:htmlfont ."; color: " . s:fgc . "; background-color: " . s:bgc . "; }\e" @@ -81,3 +83,14 @@ yank put execute "normal! ^cwbody\e" +@@ -1077,8 +1087,8 @@ + exec 'resize' s:old_winheight + let &l:winfixheight = s:old_winfixheight + +-call setwinvar(s:orgwin,'&stl', s:origwin_stl) +-call setwinvar(s:newwin,'&stl', s:newwin_stl) ++"call setwinvar(s:orgwin,'&stl', s:origwin_stl) ++"call setwinvar(s:newwin,'&stl', s:newwin_stl) + let &ls=s:ls + + " Save a little bit of memory (worth doing?)