tkf / emacs-ipython-notebook

IPython notebook client in Emacs
tkf.github.com/emacs-ipython-notebook/
GNU General Public License v3.0
548 stars 51 forks source link

Odd indentation behavior #147

Closed adamc55 closed 10 years ago

adamc55 commented 10 years ago

I've seen this most often in Django coding. Suppose the following file:

from django.conf.urls import patterns, include, url

from django.contrib import admin

from myapp import views

urlpatterns = patterns('',
    url(r'^$', views.index),
)

When I try to change the "url..." line to

    url(r'^$', views.index, name="myapp_index"),

the moment I type the comma, the whole line bounces way over to the left.

Is this a bug? Is there a way to turn this off? It is highly distracting.

adamc55 commented 10 years ago

Sorry, this is the wrong project.