repo.or.cz
/
xrzperl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated git and svn scripts
[xrzperl.git]
/
r-vim
blob
7aa4afa04e18d015474e194c10b749a90f17d3fa
1
#!/usr/bin/perl
2
use
ENV qw
/XAUTHORITY DISPLAY/
;
3
my
@g
=
qw
/gvim -f/
;
4
my
@c
=
qw
/vim/
;
5
exec
(((
$XAUTHORITY
or
$DISPLAY
)
?
@g
:
@c
),
@ARGV
);
6