Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open a Qt Creator Buffer in Emacs

Tags:

emacs

qt

I'm working on a Qt based product suite. I see the advantages of using the blessed IDE, Qt Creator, so I want to include it in my workflow.

There are things I want to do, that I'm used to from emacs, that simple key bindings don't help (macros come to mind).

Is there a way I could spawn an emacs instance with the text of the current document, then transfer the edited results back to Qt Creator?

like image 612
Don Wakefield Avatar asked Mar 28 '18 20:03

Don Wakefield


1 Answers

You can configure Emacs as an External Tool (Tools > External > Configure), and then run it via Tools > External.

When saving the file on Emacs, Qt Creator will automatically detect the changes and ask if you want to update the buffer with the new file.

like image 167
Cássio Renan Avatar answered Oct 14 '22 03:10

Cássio Renan