lpy icon indicating copy to clipboard operation
lpy copied to clipboard

Minimal Python IDE for GNU Emacs

Results 22 lpy issues
Sort by recently updated
recently updated
newest added

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...