Workaround for E706

- Avoid E706 error
- Fix not to skip comment/string lines when ignore_unmatched is 0
This commit is contained in:
Junegunn Choi
2013-08-06 00:42:08 +09:00
parent c66f35ad39
commit 1cf343a271
5 changed files with 52 additions and 6 deletions

View File

@@ -85,3 +85,9 @@ data;;exchange: ;format
apple;: banana::cake
data;;exchange: ;format
```ruby
apple = 1 # comment not aligned
apricot = 'DAD' + 'F#AD'
banana = 'Gros Michel' # comment 2
```