dotfiles/.vim/bundle/vim-coffee-script/todo.md
michener 0ad6077023 Update ALL the plugins!
git-svn-id: http://photonzero.com/dotfiles/trunk@80 23f722f6-122a-0410-8cef-c75bd312dd78
2011-03-16 00:22:13 +00:00

481 B

To do for full support

  • Destructuring assignments like:

    [a, b] = c
    {a, b} = c
     └──┴─ these should be highlighted as identifiers
    
  • Smart, lookback outdenting for cases like:

    a = {
      b: ->
        c
      }
    └─ bracket should be put here
    
  • Fix assignments with brackets in these cases:

    a[b] = c[d]
    a[b -= c] = d
    

    and still highlight these correctly:

    a[b] = c
    a[b[c]] = d
    a[b[c] -= d] = e