mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
It seems cycle-quotes does a better job than toggle-quotes. For example it supports literal backtick strings in Go, which toggle-quotes does not.
15 lines
264 B
EmacsLisp
15 lines
264 B
EmacsLisp
;;; siren-cycle-quotes.el --- jimeh's Emacs Siren: cycle-quotes.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration of cycle-quotes.
|
|
|
|
;;; Code:
|
|
|
|
(use-package cycle-quotes
|
|
:general
|
|
("C-'" 'cycle-quotes))
|
|
|
|
(provide 'siren-cycle-quotes)
|
|
;;; siren-cycle-quotes.el ends here
|