One-click switch between C ++. h file and. cpp file in Emacs

Source: Internet
Author: User

Always use Emacs to write c ++Program, Sometimes switch between. cpp and. H files. The followingCodeThis function can be implemented (bound to F11) and added. in the emacs file, it is depressing that during debugging, because the regular expression is useless for too long, forget ". "The symbol has a special meaning without an escape character. It takes a lot of time to check the error :-(. there are also. c ++ source code file (such as boost) ending with HPP, which can be modified if necessary

; Defines the function to switch between the CPP file and the. h file.
; ;#### Autoload
(Defun switch-source-file ()
(Interactive)
(Setq file-Name (buffer-file-name ))
(If (string-match "//. cpp" file-name)
(Find-file (replace-Regexp-in-string "//. cpp" "/. H" file-name )))
(If (string-match "//. H" file-name)
(Find-file (replace-Regexp-in-string "//. H" "/. cpp" file-name ))))

^ L

(Global-set-Key [F11] 'Switch-source-file)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.