We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a42fad commit 88a0e0cCopy full SHA for 88a0e0c
cider-interaction.el
@@ -650,10 +650,12 @@ otherwise, nil."
650
651
(defvar cider-from-nrepl-filename-function
652
(if (eq system-type 'cygwin)
653
- (lambda (resource) (let ((fixed-resource (replace-regexp-in-string "^/" "" resource)))
654
- (replace-regexp-in-string
655
- "\n" ""
656
- (shell-command-to-string (format "cygpath --unix '%s'" fixed-resource)))))
+ (lambda (resource)
+ (let ((fixed-resource (replace-regexp-in-string "^/" "" resource)))
+ (replace-regexp-in-string
+ "\n"
657
+ ""
658
+ (shell-command-to-string (format "cygpath --unix '%s'" fixed-resource)))))
659
#'identity)
660
"Function to translate nREPL namestrings to Emacs filenames.")
661
0 commit comments