Skip to content

Commit

Permalink
go-mode configs
Browse files Browse the repository at this point in the history
  • Loading branch information
wyuenho committed Jun 22, 2022
1 parent ec15aaa commit e09ea50
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cask
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,5 @@
(depends-on "markdown-mode")
(depends-on "hungry-delete")
(depends-on "evil")
(depends-on "crystal-mode"))
(depends-on "crystal-mode")
(depends-on "go-mode"))
1 change: 1 addition & 0 deletions smartparens-config.el
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ ID, ACTION, CONTEXT."
(eval-after-load 'elixir-mode '(require 'smartparens-elixir))
(eval-after-load 'enh-ruby-mode '(require 'smartparens-ruby))
(eval-after-load 'ess '(require 'smartparens-ess))
(eval-after-load 'go-mode '(require 'smartparens-go))
(eval-after-load 'haskell-interactive-mode '(require 'smartparens-haskell))
(eval-after-load 'haskell-mode '(require 'smartparens-haskell))
(--each sp--html-modes
Expand Down
60 changes: 60 additions & 0 deletions smartparens-go.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
;;; smartparens-go.el --- Additional configuration for go-mode. -*- lexical-binding: t; -*-

;; Copyright (C) 2022 Jimmy Yuen Ho Wong

;; Created: 10 June 2022
;; Keywords: abbrev convenience editing
;; URL: https://github.com/Fuco1/smartparens

;; This file is not part of GNU Emacs.

;;; License:

;; This file is part of Smartparens.

;; Smartparens is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.

;; Smartparens is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with Smartparens. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; This file provides some additional configuration for Go. To use
;; it, simply add:
;;
;; (require 'smartparens-config)
;;
;; alternatively, you can explicitly load these preferences:
;;
;; (require 'smartparens-go)
;;
;; in your configuration.

;; For more info, see github readme at
;; https://github.com/Fuco1/smartparens

;;; Code:
(require 'smartparens)

(declare-function go-mode "go-mode")

(sp-with-modes 'go-mode
(sp-local-pair "{" nil :post-handlers '(("||\n[i]" "RET")))
(sp-local-pair "/*" "*/" :post-handlers '(("| " "SPC")
("* ||\n[i]" "RET"))))

;; Go has no sexp suffices. This fixes slurping
;; (|foo).bar -> (foo.bar)
(add-to-list 'sp-sexp-suffix (list #'go-mode 'regexp ""))

(provide 'smartparens-go)

;;; smartparens-go.el ends here
22 changes: 22 additions & 0 deletions test/smartparens-go-test.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
(require 'go-mode)
(require 'smartparens)

(defun sp-test--paired-expression-parse-in-go (initial result &optional back)
(sp-test-with-temp-buffer initial
(go-mode)
(should (equal (sp-get-paired-expression back) result))))

(ert-deftest sp-test-paired-expression-parse-in-go nil
(let ((sp-pairs '((t . ((:open "(" :close ")" :actions (insert wrap autoskip navigate))
(:open "{" :close "}" :actions (insert wrap autoskip navigate))
(:open "[" :close "]" :actions (insert wrap autoskip navigate))
(:open "/*" :close "*/" :actions (insert wrap autoskip navigate)))))))
(sp-test--paired-expression-parse-in-go "asd |/* adasdad */" '(:beg 5 :end 18 :op "/*" :cl "*/" :prefix "" :suffix ""))
(sp-test--paired-expression-parse-in-go "asd /* adasdad */|" '(:beg 5 :end 18 :op "/*" :cl "*/" :prefix "" :suffix "") t)))

(ert-deftest sp-test-go-slurp ()
"Deleting a region containing a rust function definition."
(sp-test-with-temp-buffer "(|foo).bar"
(go-mode)
(call-interactively 'sp-slurp-hybrid-sexp)
(should (equal (buffer-string) "(foo.bar)"))))

0 comments on commit e09ea50

Please sign in to comment.