Function: ido-find-file-read-only-other-window

ido-find-file-read-only-other-window is an autoloaded, interactive and byte-compiled function defined in ido.el.gz.

Signature

(ido-find-file-read-only-other-window)

Documentation

Edit file read-only in other window with name obtained via minibuffer.

The file name is selected interactively by typing a substring. For details of keybindings, see ido-find-file.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
;;;###autoload
(defun ido-find-file-read-only-other-window ()
  "Edit file read-only in other window with name obtained via minibuffer.
The file name is selected interactively by typing a substring.
For details of keybindings, see `ido-find-file'."
  (interactive)
  (ido-file-internal 'read-only 'find-file-read-only-other-window nil
		     "Find file read-only other window: "))