]> Pileus Git - vpaste/commitdiff
use pty instead of screen
authorAndy Spencer <andy753421@gmail.com>
Tue, 27 Oct 2009 16:21:44 +0000 (16:21 +0000)
committerAndy Spencer <andy753421@gmail.com>
Tue, 27 Oct 2009 16:21:44 +0000 (16:21 +0000)
index.cgi

index 76915a726450c7f7cfa001e7dcb98140849d4619..3e3c8d5a6f7c92b337cae42438b072426666ab93 100755 (executable)
--- a/index.cgi
+++ b/index.cgi
@@ -63,11 +63,11 @@ function do_print {
                sed "1a$(get_modeline)" "$input" > "$tmp"
 
                # - I have some plugins in ~/.vim
-               # - Run ex in screen to trick it into thinking that it
+               # - Run ex in a pty to trick it into thinking that it
                #   has a real terminal, note that we also have to set
                #   term=xterm-256color in vimrc
                HOME=/home/andy \
-               screen -D -m ex -nXZ -i NONE -u vimrc \
+               /home/andy/bin/pty ex -nXZ -i NONE -u vimrc \
                        '+set bexpr= fde= fdt= fex= inde= inex= key= pa= pexpr' \
                        '+set iconstring= ruf= stl= tal=' \
                        "+set titlestring=$1\ -\ vpaste.net" \
@@ -77,7 +77,7 @@ function do_print {
                        '+TOhtml'       \
                        "+sav! $output" \
                        '+qall!'        \
-                       "$tmp"
+                       "$tmp" </dev/null >/dev/null 2>&1
 
                header text/html
                cat "$output"