Function: ede-show-supported-projects

ede-show-supported-projects is an interactive and byte-compiled function defined in auto.el.gz.

Signature

(ede-show-supported-projects)

Documentation

Display all the project types registered with EDE.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/auto.el.gz
(defun ede-show-supported-projects ()
  "Display all the project types registered with EDE."
  (interactive)
  (let ((b (get-buffer-create "*EDE Autodetect Projects*")))
    (set-buffer b)
    (setq buffer-read-only nil)
    (erase-buffer)
    (dolist (prj ede-project-class-files)
      (insert (oref prj name))
      (newline))
    (display-buffer b)
 ))