What’s the best way to handle pressing tab to increase indentation vs pressing tab to autocomplete? An example:
- containsDocument:
keyWouldBe: 'placed here, 4 spaces in'
^ cursor is placed at start of line
I just wrote or autocompleted “containsDocument:” and hit Enter and am now at the start of the new line. Cody correctly suggests “keyWouldBe” as the key I would like to add, however, first I want to hit tab once or twice to get the indentation I need. Then I would like to autocomplete. If I just hit tab, it will add keyWouldBe
at position 0 and I would have to go back and indent the line afterwards.
What’s the idea here?