Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit 0dc5c76

Browse files
committed
package: add missing requires for packages used
1 parent 4d951fb commit 0dc5c76

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

lsp-python-ms.el

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
;; Author: Charl Botha
44
;; Maintainer: Andrew Christianson
55
;; Version: 0.1.0
6-
;; Package-Requires: (lsp-mode cl)
6+
;; Package-Requires: (cl-lib lsp-mode projectile python)
77
;; Homepage: https://git.sr.ht/~kristjansson/lsp-python-ms
88
;; Keywords: lsp python
99

@@ -29,7 +29,13 @@
2929
;; from https://vxlabs.com/2018/11/19/configuring-emacs-lsp-mode-and-microsofts-visual-studio-code-python-language-server/
3030

3131
;;; Code:
32-
(require 'cl)
32+
(require 'cl-lib)
33+
(require 'lsp-mode)
34+
(require 'projectile)
35+
(require 'python)
36+
37+
;; forward declare variable
38+
(defvar lsp-render-markdown-markup-content)
3339

3440
(defvar lsp-python-ms-dir nil
3541
"Path to language server directory.

0 commit comments

Comments
 (0)