[python] Fix elpy bindings.

This commit is contained in:
Mikaël Capelle 2020-02-23 16:40:59 +01:00
parent 24582f7a1c
commit 93f87d84ea
1 changed files with 6 additions and 1 deletions

View File

@ -62,7 +62,12 @@
(use-package elpy
:defer t
:bind
(("M-/" . elpy-company-backend))
(("M-/" . elpy-company-backend)
("C-<prior>" . elpy-nav-forward-block)
("C-<prev>" . elpy-nav-backward-block)
:map elpy-mode-map
("C-<up>" . nil)
("C-<down>" . nil))
:custom
(flycheck-python-flake8-executable "python")
(python-indent-offset 4)