mirror of
https://github.com/git/git.git
synced 2026-01-10 10:13:33 +00:00
web--browse: Add support for xdg-open
xdg-open is a tool similar to git-web--browse. It opens a file or URL in the user's preferred application. It could probably be made default at least on Linux with a graphical environment. Signed-off-by: Rüdiger Sonderfeld <ruediger@c-plusplus.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
12dd2f6933
commit
6ca0f80b6c
@@ -35,6 +35,7 @@ The following browsers (or commands) are currently supported:
|
|||||||
* open (this is the default under Mac OS X GUI)
|
* open (this is the default under Mac OS X GUI)
|
||||||
* start (this is the default under MinGW)
|
* start (this is the default under MinGW)
|
||||||
* cygstart (this is the default under Cygwin)
|
* cygstart (this is the default under Cygwin)
|
||||||
|
* xdg-open
|
||||||
|
|
||||||
Custom commands may also be specified.
|
Custom commands may also be specified.
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ valid_tool() {
|
|||||||
firefox | iceweasel | seamonkey | iceape | \
|
firefox | iceweasel | seamonkey | iceape | \
|
||||||
chrome | google-chrome | chromium | chromium-browser | \
|
chrome | google-chrome | chromium | chromium-browser | \
|
||||||
konqueror | opera | w3m | elinks | links | lynx | dillo | open | \
|
konqueror | opera | w3m | elinks | links | lynx | dillo | open | \
|
||||||
start | cygstart)
|
start | cygstart | xdg-open)
|
||||||
;; # happy
|
;; # happy
|
||||||
*)
|
*)
|
||||||
valid_custom_tool "$1" || return 1
|
valid_custom_tool "$1" || return 1
|
||||||
@@ -112,7 +112,7 @@ fi
|
|||||||
|
|
||||||
if test -z "$browser" ; then
|
if test -z "$browser" ; then
|
||||||
if test -n "$DISPLAY"; then
|
if test -n "$DISPLAY"; then
|
||||||
browser_candidates="firefox iceweasel google-chrome chrome chromium chromium-browser konqueror opera seamonkey iceape w3m elinks links lynx dillo"
|
browser_candidates="firefox iceweasel google-chrome chrome chromium chromium-browser konqueror opera seamonkey iceape w3m elinks links lynx dillo xdg-open"
|
||||||
if test "$KDE_FULL_SESSION" = "true"; then
|
if test "$KDE_FULL_SESSION" = "true"; then
|
||||||
browser_candidates="konqueror $browser_candidates"
|
browser_candidates="konqueror $browser_candidates"
|
||||||
fi
|
fi
|
||||||
@@ -179,7 +179,7 @@ konqueror)
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
w3m|elinks|links|lynx|open|cygstart)
|
w3m|elinks|links|lynx|open|cygstart|xdg-open)
|
||||||
"$browser_path" "$@"
|
"$browser_path" "$@"
|
||||||
;;
|
;;
|
||||||
start)
|
start)
|
||||||
|
|||||||
Reference in New Issue
Block a user