Printing with NpPP
-
Hello, I am new to using Notepadd++ and I tried to print out a script I was writing in Perl.
After it printed out, it was missing all the “=” signs and the semicolins from every line “;”
It was also missing my “->” sections for my MySQL connections (see below examples)
for example
$dbh=DBI->connect($connectionInfo,$user,$passwd);#Prepare MySQL statement and create Statement Handler $sth $sth=$dbh->prepare($update); #Execute update statement $sth->execute(); #Disconnect database $dbh->disconnect();
Would look like this on paper
$dbh DBI connect($connectionInfo,$user,$passwd);
#Prepare MySQL statement and create Statement Handler $sth $sth $dbh prepare($update) #Execute update statement $sth execute() #Disconnect database $dbh disconnect()
My question is, is there any way to fix this so NpPP prints everything and stops skipping the above mentioned parts?
-
Hello David,
I tried on
windows 7 x64
npp 6.8.7
hp laserjetno problem seen.
Cheers
Claudia