diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-03-07 18:24:03 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-03-07 18:24:03 -0500 |
commit | 01d4fb81c6a5991f88bbe135ac8ef2e11e0f983c (patch) | |
tree | c450aca7a03de3098c1c5b01ad1bf6b83b43a778 /NEWS | |
parent | e4db2a70f5cef845d4e80d43d071c875992a81cf (diff) | |
download | snakemake-mode-01d4fb81c6a5991f88bbe135ac8ef2e11e0f983c.tar.gz |
Rework indentation
- Change continued field values to support Python indentation. This
is useful when the value is using something like format (but only
applies to naked field keys).
- Don't move back to the start of the line when in a continued field
value.
- When on the first line of block, only indent to main offset.
- Move to current indentation if point is before it. Unless there is
one possible value for indentation, don't adjust indentation any
further.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -10,7 +10,9 @@ - Indentation for field values starting on the line below a field key is now supported. New variable `snakemake-indent-value-offset' controls the offset for the value and replaces the variable - `snakemake-indent-run-offset'. + `snakemake-indent-run-offset'. If these values are continued on + another line, indentation cycling now includes a step that indents + according to Python mode. * v0.2.0 |