implement go to project with autocomplete

This commit is contained in:
Reinier Balt 2013-07-20 23:21:24 +02:00
parent 01005cc3d3
commit 79fdd5d625
12 changed files with 210 additions and 100 deletions

View file

@ -47,12 +47,14 @@ $ ->
# ADD: a is bound in navbar
# GO TO
# Mousetrap.bind 'g h', TracksApp.go_home
Mousetrap.bind 'G', -> TracksApp.go_menu()
Mousetrap.bind 'g h', -> TracksApp.go_home()
Mousetrap.bind 'g c', -> alert("go context")
# Mousetrap.bind 'g C', TracksApp.go_contexts
Mousetrap.bind 'g C', -> TracksApp.go_contexts()
Mousetrap.bind 'g t', -> alert("go tag")
Mousetrap.bind 'g p', -> alert("go project")
# Mousetrap.bind 'g P', TracksApp.go_projects
Mousetrap.bind 'g p', -> TracksApp.go_project()
Mousetrap.bind 'g P', -> TracksApp.go_projects()
Mousetrap.bind 'g s', -> TracksApp.go_starred()
# VIEW
Mousetrap.bind 'v p', -> alert("group by project")