Compare commits
No commits in common. "a60623b44c66248c1ff85706d2ccec3c9ae03f3f" and "eb6cda30256356a59b35ab78467da30c613be0c9" have entirely different histories.
a60623b44c
...
eb6cda3025
@ -3853,7 +3853,7 @@ mode independent [[https://github.com/joaotavora/eglot][Eglot]] configuration:
|
|||||||
;; Replace `nil' with `t' for debugging.
|
;; Replace `nil' with `t' for debugging.
|
||||||
(when nil
|
(when nil
|
||||||
(defvar eglot-server-programs
|
(defvar eglot-server-programs
|
||||||
`(((python-ts-mod python-mode) . ("pylsp" "-vv")))
|
`((python-mode . ("pylsp" "-vvv")))
|
||||||
"Shadow the definition of `eglot-server-programs' in `eglot'."))
|
"Shadow the definition of `eglot-server-programs' in `eglot'."))
|
||||||
|
|
||||||
(with-eval-after-load 'eglot
|
(with-eval-after-load 'eglot
|
||||||
@ -4653,7 +4653,7 @@ or to increase the verbosity of [[https://github.com/python-lsp/python-lsp-serve
|
|||||||
(with-eval-after-load 'eglot
|
(with-eval-after-load 'eglot
|
||||||
(setq-default
|
(setq-default
|
||||||
eglot-workspace-configuration
|
eglot-workspace-configuration
|
||||||
;; Enable the `:pylsp_ruff' plugin and ensure to disable the
|
;; Enable the `:pyls_ruff' plugin and ensure to disable the
|
||||||
;; `:flake8', `:mccabe', and `:pycodestye' plugins.
|
;; `:flake8', `:mccabe', and `:pycodestye' plugins.
|
||||||
'(:pylsp (:plugins
|
'(:pylsp (:plugins
|
||||||
(:pylsp_ruff
|
(:pylsp_ruff
|
||||||
@ -4708,7 +4708,7 @@ or to increase the verbosity of [[https://github.com/python-lsp/python-lsp-serve
|
|||||||
;; to launch eglot automatically.
|
;; to launch eglot automatically.
|
||||||
((nil ;; nil, since Emacs-29.1 filters out irrelevant variable names.
|
((nil ;; nil, since Emacs-29.1 filters out irrelevant variable names.
|
||||||
. ((eglot-workspace-configuration
|
. ((eglot-workspace-configuration
|
||||||
;; Enable the `:pylsp_ruff' plugin and ensure to disable the
|
;; Enable the `:pyls_ruff' plugin and ensure to disable the
|
||||||
;; `:flake8', `:mccabe', and `:pycodestye' plugins.
|
;; `:flake8', `:mccabe', and `:pycodestye' plugins.
|
||||||
. (:pylsp (:plugins
|
. (:pylsp (:plugins
|
||||||
(:pylsp_ruff
|
(:pylsp_ruff
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
# Uses .yas-setup.el.
|
|
||||||
# name : base class
|
|
||||||
# key : bcls
|
|
||||||
# expand-env: ((yas-indent-line 'fixed))
|
|
||||||
# --
|
|
||||||
class ${1:ClassName}:
|
|
||||||
"""${2:XXX}.${3:$(python-arguments-to-doc-string)}"""
|
|
||||||
|
|
||||||
def __init__(self, $3):
|
|
||||||
${3:$(python-arguments-to-self-init-string)}$0pass
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
# Uses .yas-setup.el.
|
|
||||||
# name : def function
|
|
||||||
# key : deff
|
|
||||||
# --
|
|
||||||
def ${1:name}($2):
|
|
||||||
"""${3:XXX.}${2:$(python-arguments-to-doc-string)}"""
|
|
||||||
$0pass
|
|
@ -1,9 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
# Uses .yas-setup.el.
|
|
||||||
# name : def method
|
|
||||||
# key : defm
|
|
||||||
# --
|
|
||||||
def ${1:name}(self$2):
|
|
||||||
"""${3:XXX.}${2:$(python-arguments-to-doc-string)}"""
|
|
||||||
$0pass
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
# Uses .yas-setup.el.
|
|
||||||
# name : derived class
|
|
||||||
# key : dcls
|
|
||||||
# expand-env: ((yas-indent-line 'fixed))
|
|
||||||
# --
|
|
||||||
class ${1:ClassName}(${2:object}):
|
|
||||||
"""${3:XXX}.${4:$(python-arguments-to-doc-string)}"""
|
|
||||||
|
|
||||||
def __init__(self, $4):
|
|
||||||
${4:$(python-arguments-to-self-init-string)}$0pass
|
|
||||||
|
|
@ -1,23 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
# name : program
|
|
||||||
# key : program
|
|
||||||
# expand-env : ((yas-indent-line 'fixed))
|
|
||||||
# --
|
|
||||||
#!/usr/bin/env python3
|
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
"""${1:XXX}."""
|
|
||||||
|
|
||||||
import numpy
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
|
||||||
"""${2:XXX}."""
|
|
||||||
$0pass
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
main()
|
|
||||||
|
|
||||||
# Local Variables:
|
|
||||||
# mode: python
|
|
||||||
# End:
|
|
@ -1,2 +0,0 @@
|
|||||||
python-mode
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user