mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 09:31:39 -05:00
Do not show sys-info for non-existing packages
This commit is contained in:
parent
36cb66307f
commit
6e352cd6d6
1 changed files with 6 additions and 5 deletions
|
@ -216,11 +216,12 @@ callback (`websocket-callback-debug-on-error') is enabled."
|
||||||
(ein:eval-if-bound 'image-types))
|
(ein:eval-if-bound 'image-types))
|
||||||
:ein (append (list :version (ein:version))
|
:ein (append (list :version (ein:version))
|
||||||
(ein:dev-dump-vars '("source-dir")))
|
(ein:dev-dump-vars '("source-dir")))
|
||||||
:lib (mapcar #'ein:dev-sys-info--lib
|
:lib (ein:filter (lambda (info) (plist-get info :path))
|
||||||
'("websocket" "auto-complete" "mumamo"
|
(mapcar #'ein:dev-sys-info--lib
|
||||||
"auto-complete" "popup" "fuzzy" "pos-tip"
|
'("websocket" "auto-complete" "mumamo"
|
||||||
"python" "python-mode" "markdown-mode"
|
"auto-complete" "popup" "fuzzy" "pos-tip"
|
||||||
"smartrep" "anything" "helm"))))
|
"python" "python-mode" "markdown-mode"
|
||||||
|
"smartrep" "anything" "helm")))))
|
||||||
|
|
||||||
(defun ein:dev-show-sys-info (&optional show-in-buffer)
|
(defun ein:dev-show-sys-info (&optional show-in-buffer)
|
||||||
"Show Emacs and library information."
|
"Show Emacs and library information."
|
||||||
|
|
Loading…
Add table
Reference in a new issue