jcsalomon / smarttabs

Emacs smart tabs - indent with tabs, align with spaces!
http://www.emacswiki.org/emacs/SmartTabs
114 stars 20 forks source link

colon jumps to beginning of line in python.el #36

Open btscholl opened 9 years ago

btscholl commented 9 years ago

os: mac os 10.10.4 emacs: 24.4 (9.0) smart-tabs-mode: 20140331.1629

In regular python.el (not python-mode.el) typing a colon ( : ) moves the point to the beginning of the indented line. This does not occur in python-mode.el.

relevant .emacs config: (smart-tabs-insinuate 'python) (add-hook 'python-mode-hook (lambda () (linum-mode t) (setq indent-tabs-mode t) (setq tab-width 4) (setq python-indent 4)))

Let me know if any other information is helpful.