From 580ea8b5fdea04f0bcfc809a6545a7ebced8c358 Mon Sep 17 00:00:00 2001 From: Dominik Honnef Date: Tue, 22 Oct 2013 12:35:04 -0400 Subject: [PATCH] misc/emacs: handle empty "import ()" in go-goto-imports R=adonovan CC=golang-dev https://golang.org/cl/14454058 --- misc/emacs/go-mode.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/misc/emacs/go-mode.el b/misc/emacs/go-mode.el index f5d504d377..6cc03edb06 100644 --- a/misc/emacs/go-mode.el +++ b/misc/emacs/go-mode.el @@ -749,6 +749,9 @@ declaration." (let ((old-point (point))) (goto-char (point-min)) (cond + ((re-search-forward "^import ()" nil t) + (backward-char 1) + 'block-empty) ((re-search-forward "^import ([^)]+)" nil t) (backward-char 2) 'block) @@ -843,6 +846,8 @@ uncommented, otherwise a new import will be added." (uncomment-region (line-beginning-position) (line-end-position)) (case (go-goto-imports) ('fail (message "Could not find a place to add import.")) + ('block-empty + (insert "\n\t" line "\n")) ('block (save-excursion (re-search-backward "^import (") -- 2.50.0