在Notepad ++中运行c ++的脚本,无需多余的白线

我有一个C ++脚本,如下所示:

NPP_SAVE
cd $(CURRENT_DIRECTORY)
g++ -o "$(NAME_PART).exe" "$(FULL_CURRENT_PATH)"
"$(NAME_PART).exe"

I try to compile my first C++ programming, print Hello, World.

#include <iostream>
using namespace std;

int main() {
  cout << "Hello, World!";
  return 0;
}

However, I see a an extra white line enter image description here

题:

如何删除?

It means as following: enter image description here