From 4bdf7880914edb70e080dc51dcf6f12de931e5e3 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sat, 19 Jan 2019 15:53:02 -0500 Subject: [PATCH] Add replace all alias --- cmd/micro/action/command.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/micro/action/command.go b/cmd/micro/action/command.go index 9330b2de..7fbacbc0 100644 --- a/cmd/micro/action/command.go +++ b/cmd/micro/action/command.go @@ -660,6 +660,8 @@ func (h *BufPane) ReplaceCmd(args []string) { // ReplaceAllCmd replaces search term all at once func (h *BufPane) ReplaceAllCmd(args []string) { + // aliased to Replace command + h.ReplaceCmd(append(args, "-a")) } // TermCmd opens a terminal in the current view