1. Fingertext plugin to speed up writing of code.
2. Explorer plugin to check files simultaneously.
If you know any plugins on Notepad++ to increase productivity in C++ , please share here.
How I compile
I usually compile programs by opening cmd window with shortcut
ctrl+shift+alt+X.Then I type the following command
|
g++ cppFile.cpp -o cppFile
|
This command is followed by
cppFile.exe which displays the output.
and later I just use the arrow keys to use the commands used in history if needed again for the same program.
If I have to start with a new file . I repeat the process.
If anyone uses notepad++ for c/c++ , do share how you do it in minimum amount of time. I waste too much time.
I know many people will recommend using IDE's such as CodeBlocks . I have CodeBlocks installed. and I have worked on it many times .However I don't feel comfortable working on that as most of the times I am figuring out how to fix something rather than writing code.
Please share your tips to write code faster. Thanks !!