Created
August 12, 2018 07:46
-
-
Save sri/9c13820f2da4cb6a877852b58e7cf578 to your computer and use it in GitHub Desktop.
My fix for Emacs's ruby-mode toggle string quotes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 48b5266274cf7904c5f288c3c6a658d3db074564 Mon Sep 17 00:00:00 2001 | |
From: Sriram Thaiyar <[email protected]> | |
Date: Wed, 22 Jun 2016 09:21:26 -0700 | |
Subject: [PATCH] Fix ruby-toggle-string-quotes bug | |
* lisp/progmodes/ruby-mode.el (ruby-toggle-string-quotes): | |
Change logic to quote based on the current quote of the string. | |
* test/lisp/progmodes/ruby-mode-tests.el (ruby-toggle-string-quotes-quotes-correctly): | |
Add test. | |
--- | |
lisp/progmodes/ruby-mode.el | 2 +- | |
test/lisp/progmodes/ruby-mode-tests.el | 11 +++++++++++ | |
2 files changed, 12 insertions(+), 1 deletion(-) | |
diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el | |
index d75edbc..aa7c08c 100644 | |
--- a/lisp/progmodes/ruby-mode.el | |
+++ b/lisp/progmodes/ruby-mode.el | |
@@ -1799,7 +1799,7 @@ If the result is do-end block, it will always be multiline." | |
(content | |
(buffer-substring-no-properties (1+ min) (1- max)))) | |
(setq content | |
- (if (equal string-quote "\"") | |
+ (if (equal string-quote "'") | |
(replace-regexp-in-string "\\\\\"" "\"" (replace-regexp-in-string "\\([^\\\\]\\)'" "\\1\\\\'" content)) | |
(replace-regexp-in-string "\\\\'" "'" (replace-regexp-in-string "\\([^\\\\]\\)\"" "\\1\\\\\"" content)))) | |
(let ((orig-point (point))) | |
diff --git a/test/lisp/progmodes/ruby-mode-tests.el b/test/lisp/progmodes/ruby-mode-tests.el | |
index 52126a3..5dd34f8 100644 | |
--- a/test/lisp/progmodes/ruby-mode-tests.el | |
+++ b/test/lisp/progmodes/ruby-mode-tests.el | |
@@ -716,6 +716,17 @@ VALUES-PLIST is a list with alternating index and value elements." | |
(ruby-backward-sexp) | |
(should (= 2 (line-number-at-pos))))) | |
+(ert-deftest ruby-toggle-string-quotes-quotes-correctly () | |
+ (let ((pairs | |
+ '(("puts 'foo\"\\''" . "puts \"foo\\\"'\"") | |
+ ("puts \"foo'\\\"\"" . "puts 'foo\\'\"'")))) | |
+ (dolist (pair pairs) | |
+ (ruby-with-temp-buffer (car pair) | |
+ (beginning-of-line) | |
+ (search-forward "foo") | |
+ (ruby-toggle-string-quotes) | |
+ (should (string= (buffer-string) (cdr pair))))))) | |
+ | |
(ert-deftest ruby--insert-coding-comment-ruby-style () | |
(with-temp-buffer | |
(let ((ruby-encoding-magic-comment-style 'ruby)) | |
-- | |
2.2.1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment