Skip to content

Commit

Permalink
fix wait message
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuya OTA committed Jun 12, 2019
1 parent 16d6e16 commit 249bd0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ func runVim(args []string) error {

func runVimTapi(args []string) error {
if *tabFlg {
args = append([]string{"tabnew"}, args...)
args = append([]string{"tabnew", "done"}, args...)
} else {
args = append([]string{"split"}, args...)
args = append([]string{"split", "done"}, args...)
}
tapi := tapiexec.CallAPI("Tapi_open_wait", args)

Expand Down

0 comments on commit 249bd0d

Please sign in to comment.