Merge pull request #1416 from Mambu38/feature-pyimport
Added pyimport support
This commit is contained in:
commit
447af38051
2 changed files with 14 additions and 0 deletions
|
@ -95,6 +95,17 @@ called.")
|
|||
"u" #'anaconda-mode-find-references))
|
||||
|
||||
|
||||
(def-package! pyimport
|
||||
:after python
|
||||
:config
|
||||
(map! :map python-mode-map
|
||||
:localleader
|
||||
(:prefix ("i" . "insert")
|
||||
:desc "Missing imports" "m" #'pyimport-insert-missing)
|
||||
(:prefix ("r" . "remove")
|
||||
:desc "Unused imports" "r" #'pyimport-remove-unused)))
|
||||
|
||||
|
||||
(def-package! nose
|
||||
:commands nose-mode
|
||||
:preface (defvar nose-mode-map (make-sparse-keymap))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue