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
1 answer

NppExec Notepadd++ not expected output

I have the following testing scirpt: I tried to check this script by NppExec - I used…
Michal Vlasák
  • 247
  • 2
  • 14
0
votes
1 answer

Configure NppExec in Notepad++ for C programming

I am trying to configure NppExec so that I can run C codes directly from Notepad++. I followed this link http://windowsbro.blogspot.in/2012/10/compile-with-notepad-any-language.html to configure NppExec but it resulted in following error NPP_SAVE:…
pkj
  • 559
  • 1
  • 9
  • 21
0
votes
0 answers

Restart Notepad++ using NppExec

I develop a tool based on npp+nppexec and the limit of 40 scripts in menu is driving me mad. The only solution I see is to have context menu items like "switch to X mode", "switch to Y mode" and so on. But is there a way to do it? Writing script…
0
votes
1 answer

Notepad++ NppExec: Execute / Pass multiple files to compiler

currently im using this script to pass a file to the VALA Compiler: cd $(CURRENT_DIRECTORY) valac $(FILE_NAME) The problem is very obvious. With this command, i'm just passing one file to the compiler. The command has to be like that: valac…
user2924839
0
votes
1 answer

"set" command not working properly while running batch file through NppExec plugin of Notepad++

Consider this batch file :@echo off set /p var1=Input your first name and press Enter key : set /p var2=Input your last name and press Enter key : pause If I run this batch file by double clicking on it, it works fine. But if it is run…
san
  • 126
  • 4
  • 11
0
votes
1 answer

Looking for References on Script, NppExec plugin in Notepad++

I have just used some script for NotePad++ NppExec. Where can I find references to explain below terms from the excerpt of the script? It is supposed to be in a single line, but I break it down to 4 lines to reduce horizontal scroll Thank you.…
Edwin
  • 33
  • 1
  • 1
  • 6
0
votes
1 answer

nppExec: file coudn't be found

i try to execute a ruby file with nppExec (notepad++) but it tells me that the file couldn't be found: Error opening script file: D:/Eigene (Das System kann die angegebene Datei nicht finden) One directory has a space in its name. Without the space…
user2211703
  • 489
  • 2
  • 5
  • 14
0
votes
1 answer

NPPExec show .err file in console

I'm using nppexec to compile files with ccsc compiler for PIC micro controllers. It's working great, but the ccsc compiler is writing errors/warnings in a separate file. http://pastebin.com/yNrytafg Console doesn't show any errors. What can I do to…
aney1
  • 1
  • 3
0
votes
1 answer

Pocket CPP/NppExec : Where does it search for txt files when using ifstream

I'm trying to use Pocket CPP to compile C++ on notepad++. I cant get it to open the text file when using ifstream though. What folder to I put the txt file so that PocketCPP/NppExec reads it.
Man Man
  • 11
  • 1
0
votes
3 answers

NppExec plugin ends output at first colon

I'm experimenting with TypeScript, and I'm using Notepad++ to compose TypeScript, and the NppExec plugin to compile my scripts. Seems like it should work, but there's one very strange problem: NppExec only shows me the output up to the : before the…
Josh
  • 7,232
  • 8
  • 48
  • 75
0
votes
1 answer

N++ throwing error while compiling the C# program using NppExec plugin?

I have wrote a program to check the N++ that if it works with C# programs to execute directly within it, I set it up using NppExec plugin and set the path for the script is "C:\Windows\Microsoft.NET\Framework\v3.5\csc.exe"…
avirk
  • 3,050
  • 7
  • 38
  • 57
0
votes
1 answer

Compiling and Running C code in notepad++

I have a problem with compiling and running C codes in notepad++. I am using the nppexec plugin and wrote the following in the script section after pressing F6: C:\MinGW\bin\gcc.exe -g "$(FULL_CURRENT_PATH)" -o …
Sohaib
  • 4,556
  • 8
  • 40
  • 68
0
votes
2 answers

PyQt4 example working from IDLE, but not when executed from npp

I am running a very basic example in PyQt4. It is shown below. I was struggling with the Enthought Canopy installation, struggling with the cygwin Python implementation, and finally just installed Python 2.7, Numpy 1.7.1, MatPlotLib 1.2.0 one at a…
Brian Leach
  • 3,974
  • 8
  • 36
  • 75
0
votes
1 answer

Can't integrate Mingw to Notepad++

I try to integrate my notepad++ to previously and successfully installed mingw application. I got help from this website: http://iitdu.forumsmotion.com/t108-gcc-compiler-in-notepad I took the code from that website as: // The script code, C…
user2221104
  • 1
  • 1
  • 2
0
votes
1 answer

Nppexec Howto pass selected link from npp editor to external browser

is it possible to pass selected text to browser (chrome) from notepad ++? howto pass not path to TEMP_FILE but content? //—need a correction— set ChromeRun = C:\Documents and Settings\My\Local Settings\Application…
Yurij73
  • 5,281
  • 3
  • 15
  • 14
1 2 3 4 5
6