You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 21, 2022. It is now read-only.
I'm running into a roadblock using Light Table with python because the smart-indent feature isn't out-denting when it should after functions or classes.
Ex. before smart-indent:
class Dog:
kind = 'canine'
def __init__(self, name):
self.name = name
class Cat:
kind = 'feline'
def __init__(self, name):
self.name = name
After smart-indent:
class Dog:
kind = 'canine'
def __init__(self, name):
self.name = name
class Cat:
kind = 'feline'
def __init__(self, name):
self.name = name
Not only did it reduce the tabs down to 2 spaces, it also didn't pickup on when to outdent causing the sibling classes to become nested.
This is a major blocker for polyglot Light Table users who use python.