blob: 10c4cfcbe86a3e2397a2650e7c8febbc0c254da5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
;;; Code:
(use-package python
:ensure t)
(use-package eglot
:ensure t
:config
(add-to-list 'eglot-server-programs '(python-mode . ("pylsp")))
:hook
((python-mode . eglot-ensure)))
(defun python-args-to-google-docstring (text &optional make-fields)
"Return a reST docstring format for the python arguments in yas-text."
(let* ((indent (concat "\n" (make-string (current-column) 32)))
(args (python-split-args text))
(nr 0)
(formatted-args
(mapconcat
(lambda (x)
(concat " " (nth 0 x)
(if make-fields (format " ${%d:arg%d}" (cl-incf nr) nr))
(if (nth 1 x) (concat " \(default " (nth 1 x) "\)"))))
args
indent)))
(unless (string= formatted-args "")
(concat
(mapconcat 'identity
(list "" "Args:" formatted-args)
indent)
"\n"))))
(use-package yasnippet
:ensure t
:config
(yas-global-mode 1))
(provide 'python-custom)
;;; python-custom.el ends here
|