Variable: project-other-frame-map
project-other-frame-map is a variable defined in project.el.gz.
Value
C-o project-display-buffer-other-frame
Documentation
Keymap for project commands that display buffers in other frames.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
(defvar project-other-frame-map
(let ((map (make-sparse-keymap)))
(define-key map "\C-o" #'project-display-buffer-other-frame)
map)
"Keymap for project commands that display buffers in other frames.")