Skip to content

Commit

Permalink
feat: rm unneeded function, improve doc
Browse files Browse the repository at this point in the history
  • Loading branch information
sfavazza committed Dec 9, 2023
1 parent 9bfdb35 commit 1c53d35
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion README.org
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ It is structured in the following way:
name: image-container-name
# server id of a registered LSP server. You can find the list of registered servers evaluating:
#
# `(let ((keys ())) (maphash (lambda (k v) (push k keys)) lsp-clients) keys)`
# `(ht-keys lsp-clients)`
#
# source:
# https://stackoverflow.com/questions/17066169/retrieve-keys-from-hash-table-sorted-by-the-values-efficiently
Expand Down
7 changes: 0 additions & 7 deletions lsp-docker.el
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,6 @@
:group 'lsp-docker
:type 'string)

(defun lsp-docker--get-ht-keys (hash-table)
"Return the list of keys found in the given HASH-TABLE."
(let ((keys ()))
(maphash (lambda (k _) (push k keys))
hash-table)
keys))

(defun lsp-docker--log-docker-supplemental-calls-p ()
"Return non-nil if should log docker invocation commands"
lsp-docker-log-docker-supplemental-calls)
Expand Down

0 comments on commit 1c53d35

Please sign in to comment.