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 (append (list :version (ein:version))
|
||||
(ein:dev-dump-vars '("source-dir")))
|
||||
:lib (mapcar #'ein:dev-sys-info--lib
|
||||
:lib (ein:filter (lambda (info) (plist-get info :path))
|
||||
(mapcar #'ein:dev-sys-info--lib
|
||||
'("websocket" "auto-complete" "mumamo"
|
||||
"auto-complete" "popup" "fuzzy" "pos-tip"
|
||||
"python" "python-mode" "markdown-mode"
|
||||
"smartrep" "anything" "helm"))))
|
||||
"smartrep" "anything" "helm")))))
|
||||
|
||||
(defun ein:dev-show-sys-info (&optional show-in-buffer)
|
||||
"Show Emacs and library information."
|
||||
|
|
Loading…
Add table
Reference in a new issue