Questions tagged [nppexec]

NppExec is a console plugin for Notepad++ that allows you to run scripts and some built-in commands.

NppExec is a console plugin for the text-editor Notepad++ that allows you to run scripts and some built-in commands.

Most Run commands have been implemented as scripts. Built-in variables can be used to enable more complicated, program-specific tasks such as compiling code.

NppExec scripts can be assigned to menu items and keyboard shortcuts.

90 questions
0
votes
2 answers

I want to compile c codes in notepad++, but I can't set nppexec up

So, I tried setting this up. Everytime I get errors or it won't create an exe I can'T find usefull code for this. I am super tired and angry. I hope someone can help me I searched on Youtube and Bing, but didn't find anything usefull for me. Nothing…
Mheldown
  • 7
  • 4
0
votes
1 answer

NppExec not being able to compile Java

I am trying to make NPPexec compile my java programs but the plugin doesn't work. I tried to direct it to were the file currently was, I gave up on that since it dint work and just made it to go to my code folder, still stayed normal. Javac seems to…
0
votes
0 answers

How to fix Notepad++ NppExec Error

I'm trying to fix a error in Notepad++, I'm using NppExec plugin in Notepad++ and trying to execute my code. Whenever I click Plugins, NppExec, Execute, a window popups. Then I type this: print("Hello World") and press 'OK', a error line like this…
0
votes
1 answer

NPPExec scanf Notepad++ Console

im new to NPPExec and c coding. Is there a way to compile and run a c code like int number; scanf("enter a number: %d" ,&number); printf("\nyour number is: %d\n", number); when i try NPP_SAVE cd $(CURRENT_DIRECTORY) cmd /c g++ -utf-8 -pedantic…
natiole
  • 5
  • 5
0
votes
0 answers

compiling multiple cpp files

I am writing c++ in notepad++ using nppexec plugin and compiling with minGW. I have a folder structure of: projckt/ - main.cpp - head/ -- vtk.h - src/ -- vtk/ --- vtkFile1.cpp --- vtkFile2.cpp How do I compile and link? For my "hello world" scripts…
Malthe Eisum
  • 189
  • 11
0
votes
1 answer

How do I clear Console (Java)? Notepad++

I have looked through some questions of the similar name, none yielding the desired results. Here's an overview of my issue. I use both println() and print() statements for Notepad++, and the console is System.out. I tried working with…
ArQane - ArQ
  • 45
  • 1
  • 10
0
votes
1 answer

How to output textfile content using npp_exec

Npp_Exec does not recognize Type command to list file content, any Idea how to print content of a textfile with Npp_exec? I need the equivalent to type filename in npp_exec.
CloudyMarble
  • 36,908
  • 70
  • 97
  • 130
0
votes
1 answer

NppExec - Move file to another folder respecting subfolder structure

I'm using Notepad++ for write my SA:MP server system, but i have a issue trying to organize my folders: I want to put my compiled files (.amx - like a resulting .exe for non-Pawn devs) in a separated folder called bin, with the same subfolder…
Vico
  • 171
  • 1
  • 13
0
votes
0 answers

Can't run python script via NppExec plugin in Note++

I've been trying to run this: npp_console 1 //open console NPP_CONSOLE - //disable output of commands npe_console m- //disable unnecessary output con_colour bg= 191919 fg= F5F5F5 //set console…
0
votes
0 answers

the make command on NppExec is not working on windows?

I am trying to build a save, make and run function on notepad++ for C++. I am working on the plugin called NppExec, and my script looks like this: NPP_SAVE cd $(CURRENT_DIRECTORY) cmd /k qmake *.pro & "C:\Program…
T.F.
  • 199
  • 1
  • 1
  • 6
0
votes
2 answers

Python or batch file to open multiple vbs files (vbs files open a program+file)

I have multiple VBS files (each opening a different file, same program) and I wanted to open them all without having to click on all of them. I can get them to open without an issue if I use the python script I created and execute with NPPExec from…
0
votes
1 answer

Compiling LaTeX from notepad++ and opening with sumatra. ForwardSearch doesn't work if file path contains umlauts

I've had this small problem for quite some time now and I haven't been able to find a solution even after excessive googling. In this guide it is described how LaTeX can be written and compiled using npp++ and nppExec together with SumatraPDF.…
user5421999
0
votes
1 answer

running an exe from NppExec

I'm making a script to compile and run an entire project on Notepad++ using NppExec. I keep each project on a folder and each folder has a makefile to compile the entire project, the compiler will produce a single .exe file so in each folder there…
dvd2000
  • 103
  • 3
0
votes
2 answers

Notepad++ search for path reference and replace with the file's path?

I am using notepad++ and I have a number of xml files. For example, let's say the XML file is SomeXML.XML. Within the file, there will be entries such as: //SERVER-NAME/Graphics/Materials/Downloaded/Fabric Grey.jpg I wish to find these entries (they…
skavan
  • 417
  • 1
  • 9
  • 17
0
votes
2 answers

\t spacing in notepad++'s nppexec

I've written a program in java "CircleDemo" that inevitably does this: System.out.printf("The circle's area \t is \t %.2f \n", circle.getArea()); System.out.printf("The circle's diameter \t is \t %.2f \n",…
Mark Puchala II
  • 634
  • 2
  • 8
  • 25