paetzke / py-autopep8.el

py-autopep8.el integrates autopep8 into Emacs.
GNU General Public License v3.0
79 stars 21 forks source link

removed (pop kill-ring) after (kill-buffer) #20

Closed csboling closed 7 years ago

csboling commented 8 years ago

Appears to fix #19. kill-buffer refers to closing a buffer and does not affect the kill ring, so (pop kill-ring) after each kill-buffer makes undesired changes to the kill ring.

jerryasher commented 8 years ago

Thanks, I had noticed this issue in python and was very happy to find this fix. I'd love to see an updated py-autopep8.el released that includes this!