Browse Source

Add prelude-python-mode-set-encoding-automatically defcustom (#1293)

- if it is nil (default) does nothing
- if non-nil insert '# coding: utf-8' on top of python buffers
custom
Manoel Vilela 5 years ago
committed by GitHub
parent
commit
7226716739
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 13
      doc/modules/python.md
  3. 8
      modules/prelude-python.el

1
CHANGELOG.md

@ -9,6 +9,7 @@
### Changes ### Changes
* [#1292](https://github.com/bbatsov/prelude/issues/1292): Add `prelude-python-mode-set-encoding-automatically` defcustom on prelude-python.el module with nil default value.
* [#1278](https://github.com/bbatsov/prelude/issues/1278): Don't disable `menu-bar-mode` unless `prelude-minimalistic-ui` is enabled. * [#1278](https://github.com/bbatsov/prelude/issues/1278): Don't disable `menu-bar-mode` unless `prelude-minimalistic-ui` is enabled.
* [#1277](https://github.com/bbatsov/prelude/issues/1277): Make it possible to disable the creation of `Super`-based keybindings via `prelude-super-keybindings`. * [#1277](https://github.com/bbatsov/prelude/issues/1277): Make it possible to disable the creation of `Super`-based keybindings via `prelude-super-keybindings`.
* Removed deprecated alias `prelude-ensure-module-deps`. * Removed deprecated alias `prelude-ensure-module-deps`.

13
doc/modules/python.md

@ -20,3 +20,16 @@ syntax checkers, [Pylint](http://www.pylint.org/) and
order to have Flycheck support on the fly syntax checking for order to have Flycheck support on the fly syntax checking for
Python you need to have either of these installed and accessible to Python you need to have either of these installed and accessible to
Emacs. In order to manually choose a checker run `C-c ! s`. Emacs. In order to manually choose a checker run `C-c ! s`.
## Automatic insertion of # coding: utf-8
Previously `prelude-python` had this feature enabled by default, but
that is only necessary on Python2, because Python3 already use utf-8
as default encoding. In 2020, python2 becames deprecated, so that
functionallity becames a annoying side-effect for some users. If you
wish to enable this, add this to your config file:
```emacs-lisp
(setq prelude-python-mode-set-encoding-automatically t)
```

8
modules/prelude-python.el

@ -31,6 +31,11 @@
;;; Code: ;;; Code:
(defcustom prelude-python-mode-set-encoding-automatically nil
"Non-nil values enable auto insertion of '# coding: utf-8' on python buffers."
:type 'boolean
:group 'prelude)
(prelude-require-package 'anaconda-mode) (prelude-require-package 'anaconda-mode)
(when (boundp 'company-backends) (when (boundp 'company-backends)
@ -97,7 +102,8 @@
#'python-imenu-create-flat-index)) #'python-imenu-create-flat-index))
(add-hook 'post-self-insert-hook (add-hook 'post-self-insert-hook
#'electric-layout-post-self-insert-function nil 'local) #'electric-layout-post-self-insert-function nil 'local)
(add-hook 'after-save-hook 'prelude-python-mode-set-encoding nil 'local))
(when prelude-python-mode-set-encoding-automatically
(add-hook 'after-save-hook 'prelude-python-mode-set-encoding nil 'local)))
(setq prelude-python-mode-hook 'prelude-python-mode-defaults) (setq prelude-python-mode-hook 'prelude-python-mode-defaults)

Loading…
Cancel
Save