implement go-parent command

This commit is contained in:
Shin'ya Ueoka 2017-09-17 12:52:24 +09:00
parent 0be9776cb3
commit e9863299ab
6 changed files with 34 additions and 5 deletions

View file

@ -43,6 +43,8 @@ const execOperation = (operation) => {
return navigates.linkPrev(window);
case operations.NAVIGATE_LINK_NEXT:
return navigates.linkNext(window);
case operations.NAVIGATE_PARENT:
return navigates.parent(window);
}
};