• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Does anyone have a good c++ plugin for notepad++? If so please post it here.

Rugged Mage

Lua Scripter
Joined
Mar 8, 2010
Messages
1,182
Solutions
2
Reaction score
77
Well i just said everything in the title, and the reason I don't use an IDE is because, notepad is faster.
 
Install nppexec and in plugins>nppexec>execute paste
Code:
NPP_SAVE
cmd /c del "$(NAME_PART).exe"
C:\Program Files\CodeBlocks\MinGW\bin\g++.exe $(FULL_CURRENT_PATH)  -o $(CURRENT_DIRECTORY)\$(NAME_PART).exe
C:\Program Files\Notepad++\run.bat  $(CURRENT_DIRECTORY)\$(NAME_PART).exe
create somewhere bat file with
Code:
start %1
change paths in first code, first to your path to your g++ executable and second to that bat file you just created. Them just click configured hotkey them enter and it gonna compile and run. As long as its single simple code of course. But he needed you can edic script to call g++ with additional arguments
 
Back
Top