Pythonで作業しているときに、次のようなスニペットが不必要にあることに気付くことがあります。
thing = longfunctioncall(with, many, necessary, arguments, that, take, a, fairly, long, time, to, type)
formattedthing = [str(*q) for q in thing]
次のように統合できます。
formattedthing = [str(*q) for q in longfunctioncall(with, many, necessary, arguments, that, take, a, fairly, long, time, to type)]
単純にステートメント全体を kill して yank できることは知っていますが、それを行うための EACSy の方法がもっとあるのではないかと考えていました。