lpy
lpy copied to clipboard
Minimal Python IDE for GNU Emacs
Since we already have "J" and "K" for moving outline positions, maybe let "j" and "k" work as lispy for elisp buffer.
For example(point before \@): def honirific(cls): class HonirificCls(cls): def full_name(self): return "Ms." + super(HonirificCls, self).full_name() return HonirificCls @honirific class Name(object): def __init__(self, first_name, last_name): self.first_name = first_name self.last_name = last_name...