R
R
RNT2012-06-10 18:41:11
Syntax highlighting
RNT, 2012-06-10 18:41:11

How to integrate Notepad++ with MinGW compiler?

Dear Khabrovites, tell me how to correctly integrate Notepad ++ (or a similar editor with highlighting of different syntaxes) with the MinGW compiler (or again similar on Windows).

Answer the question

In order to leave comments, you need to log in

2 answer(s)
M
max7 M7, 2012-06-10
@max7

Plugin NppExec Usage
example
PS: You need to carefully study its settings. For example, the comment delimiter in the NppExec script is set to "//".

R
rtorsten, 2012-06-10
@rtorsten

Sublime Text 2, select tools->build systems->new and write something like this.

{
  "cmd": ["g++ -Wall ${file} -o ${file_base_name} && ./${file_base_name}"], "working_dir": "${file_path}",
  "selector": "source.c++",
  "shell": true
}


Save the new build system configuration, select it in tools and now you can use ctrl+B to build.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question