Created
June 16, 2018 15:05
-
-
Save bcetin/11e902d494049e63e8105d6bbded82f6 to your computer and use it in GitHub Desktop.
Nppexec command that makes the terminal stay up for you to see the output for notepad++. I added simple stuff to the snippet from this tutorial. http://daleswanson.blogspot.com/2012/07/how-to-compile-c-code-in-notepad-with.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npp_save | |
cd "$(CURRENT_DIRECTORY)" | |
g++ "$(FILE_NAME)" -o $(NAME_PART) -march=native -O3 | |
npp_run cmd.exe /k "$(NAME_PART)" & pause & exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment