From 036ed7b9ed4ee24cfe0ba12b29b1699560437985 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Wed, 4 Jan 2017 13:51:17 -0500 Subject: [PATCH] Add SaveAs action Fixes #509 --- cmd/micro/bindings.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/micro/bindings.go b/cmd/micro/bindings.go index b537a9e1..8098f61b 100644 --- a/cmd/micro/bindings.go +++ b/cmd/micro/bindings.go @@ -41,6 +41,7 @@ var bindingActions = map[string]func(*View, bool) bool{ "Delete": (*View).Delete, "InsertTab": (*View).InsertTab, "Save": (*View).Save, + "SaveAs": (*View).SaveAs, "Find": (*View).Find, "FindNext": (*View).FindNext, "FindPrevious": (*View).FindPrevious,