Pathogen and new bundles
git-svn-id: http://photonzero.com/dotfiles/trunk@65 23f722f6-122a-0410-8cef-c75bd312dd78
This commit is contained in:
parent
9b767aed56
commit
96a93bce9e
78 changed files with 10717 additions and 0 deletions
35
.vim/bundle/vim-coffee-script/todo.md
Normal file
35
.vim/bundle/vim-coffee-script/todo.md
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# To do for full support
|
||||
|
||||
- Destructuring assignments like:
|
||||
|
||||
[a, b] = c
|
||||
{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 = {
|
||||
b: ->
|
||||
c
|
||||
}
|
||||
└─ bracket should be put here
|
||||
|
||||
- Should indent if the previous line ends, or the current line starts, with one
|
||||
of these:
|
||||
|
||||
+ - * / % | & , . is isnt and or && ||
|
||||
|
||||
- Support `else unless` in indentation:
|
||||
|
||||
unless a
|
||||
b
|
||||
else unless c
|
||||
d
|
||||
Loading…
Add table
Add a link
Reference in a new issue