Function: xwidget-webkit-get-selection

xwidget-webkit-get-selection is a byte-compiled function defined in xwidget.el.gz.

Signature

(xwidget-webkit-get-selection PROC)

Documentation

Get the webkit selection and pass it to PROC.

Source Code

;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun xwidget-webkit-get-selection (proc)
  "Get the webkit selection and pass it to PROC."
  (xwidget-webkit-execute-script
   (xwidget-webkit-current-session)
   "window.getSelection().toString();"
   proc))