Skip to content

Instantly share code, notes, and snippets.

@dzzzchhh
Created November 9, 2023 08:18
Show Gist options
  • Select an option

  • Save dzzzchhh/cbe49a82a53753e56036df9ada8a3b96 to your computer and use it in GitHub Desktop.

Select an option

Save dzzzchhh/cbe49a82a53753e56036df9ada8a3b96 to your computer and use it in GitHub Desktop.
silly, but came in handy once
(defun dzch/js-to-jsx-rename-file ()
(interactive)
(let*
((path buffer-file-name)
(new-path (format "%sx" path)))
(rename-file path new-path)
(kill-buffer)
(find-file new-path)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment