Allow shorthand option notation when using delimiter key

e.g. :EasyAlign=l2r2dlmlr**
This commit is contained in:
Junegunn Choi
2013-10-07 21:09:37 +09:00
parent bab23a1917
commit 2bf1b2164d
3 changed files with 59 additions and 32 deletions

View File

@@ -106,3 +106,23 @@ data ;;exchange:;format
apple ;: banana :: cake
data ;; exchange :; format
a+= 1
bb==# 2
ccc= 3
dddd=> 4
apple;: banana:: cake
data;; exchange:; format
```ruby
apple = 1 # comment not aligned
apricot = 'DAD' + 'F#AD'
banana = 'Gros Michel' # comment 2
```
```ruby
apple = 1 # comment not aligned
apricot = 'DAD' + 'F#AD'
banana = 'Gros Michel' # comment 2
```