Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 849 Bytes

README.md

File metadata and controls

31 lines (18 loc) · 849 Bytes

Electric spacing mode

An emacs minor-mode to automatically add spacing around operators.

For example typing

a=10*5+2

results in

a = 10 * 5 + 2

Setup

The simplest way to install electric-spacing-mode is via package.el.

To temporarily enable electric-spacing-mode simply call electric-spacing-mode. To permenantly enable it for a major mode simply add it to the relevant mode hook. For example for python-mode add the following to your config[1]:

(add-hook 'python-mode-hook #'electric-spacing-mode)

Note that electric-spacing-mode is not a global minor mode, and so must be enabled separately for each major mode.

[1] For emacs versions < 24 you may need to define a wrapper function to enable the mode unconditionally.