Function: xwidget-webkit-isearch-with-input-method
xwidget-webkit-isearch-with-input-method is an interactive and
byte-compiled function defined in xwidget.el.gz.
Signature
(xwidget-webkit-isearch-with-input-method)
Documentation
Handle a request to use the input method to modify the search query.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
(defun xwidget-webkit-isearch-with-input-method ()
"Handle a request to use the input method to modify the search query."
(interactive)
(let ((key (car unread-command-events))
events)
(setq unread-command-events (cdr unread-command-events)
events (funcall input-method-function key))
(dolist (k events)
(with-current-buffer xwidget-webkit-isearch--read-string-buffer
(setq xwidget-webkit-isearch--string
(concat xwidget-webkit-isearch--string
(char-to-string k)))))
(exit-minibuffer)))