Update ALL the plugins!

git-svn-id: http://photonzero.com/dotfiles/trunk@80 23f722f6-122a-0410-8cef-c75bd312dd78
This commit is contained in:
michener 2011-03-16 00:22:13 +00:00
parent 0a85941bf4
commit 0ad6077023
42 changed files with 9620 additions and 1644 deletions

View file

@ -6,14 +6,6 @@
{a, b} = c
└──┴─ these should be highlighted as identifiers
- Assignments inside brackets (sounds simple enough):
a[b -= c] = d
this should still be highlighted correctly:
a[b[c]] = d
- Smart, lookback outdenting for cases like:
a = {
@ -22,14 +14,13 @@
}
└─ bracket should be put here
- Should indent if the previous line ends, or the current line starts, with one
of these:
- Fix assignments with brackets in these cases:
+ - * / % | & , . is isnt and or && ||
a[b] = c[d]
a[b -= c] = d
- Support `else unless` in indentation:
and still highlight these correctly:
unless a
b
else unless c
d
a[b] = c
a[b[c]] = d
a[b[c] -= d] = e