Function: browse-url-kde

browse-url-kde is an autoloaded, interactive and byte-compiled function defined in browse-url.el.gz.

Signature

(browse-url-kde URL &optional NEW-WINDOW)

Documentation

Ask the KDE WWW browser to load URL.

Default to the URL around or before point. The optional argument NEW-WINDOW is not used.

Probably introduced at or before Emacs version 21.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/browse-url.el.gz
;;;###autoload
(defun browse-url-kde (url &optional _new-window)
  "Ask the KDE WWW browser to load URL.
Default to the URL around or before point.
The optional argument NEW-WINDOW is not used."
  (interactive (browse-url-interactive-arg "KDE URL: "))
  (message "Sending URL to KDE...")
  (apply #'start-process (concat "KDE " url) nil browse-url-kde-program
	 (append browse-url-kde-args (list url))))