This always worked fine, but all of a sudden, when I paste emacs from another place on OS X (using cmd-c cmd-v), I get a bunch of extra spaces / tabs. For example, I have the following YML:
- name: something hosts: some_host gather_facts: False tasks: - name: do something some_module: group: something
When I copy this and then paste it into emacs, it is unexpectedly formatted:
- name: something hosts: some_host gather_facts: False tasks: - name: do something some_module: group: something
It looks like it doubles the number of spaces in each line. I tried this in both barley mode and main mode. Everything works well. What gives?
source share