• Login
Community
  • Login
  1. Home
  2. Help wanted · · · – – – · · ·
Log in to post
Load new posts
  • Recently Replied
  • Recently Created
  • Most Posts
  • Most Votes
  • Most Views
  • A

    Just updated to the latest Notepad++ - now lost what i was working on.

    Watching Ignoring Scheduled Pinned Locked Moved
    1 Feb 23, 2018, 11:38 AM
    Feb 23, 2018, 11:38 AM
    0 Votes
    1 Posts
    615 Views
    No one has replied
  • K

    Help needed - editing email id's to make them web addresses

    Watching Ignoring Scheduled Pinned Locked Moved
    4 Feb 22, 2018, 11:06 PM
    Feb 21, 2018, 9:39 PM
    -1 Votes
    4 Posts
    1k Views
    K Feb 22, 2018, 11:06 PM

    Thank you - both methods worked fine ! The second one by Scott is much faster.
    I appreciate the help.
    Best regards,
    Kerry

  • M

    Trying to move document tab changes the text to Korean.

    Watching Ignoring Scheduled Pinned Locked Moved
    1 Feb 22, 2018, 3:28 PM
    Feb 22, 2018, 3:28 PM
    0 Votes
    1 Posts
    666 Views
    No one has replied
  • J

    Notepad++ CS-Script Compilation Error

    Watching Ignoring Scheduled Pinned Locked Moved
    8 Feb 22, 2018, 1:20 PM
    Feb 18, 2018, 5:55 AM
    0 Votes
    8 Posts
    4k Views
    J Feb 22, 2018, 1:20 PM

    P.S: I think this issue occur because of the latest release of both NP++ and CS-Script this didn’t happen in the previous versions of NP++.If I remembered correctly, CS-Script worked just fine with the NP++ plugin manager pre-installed version.

  • C

    Función textfx en español

    Watching Ignoring Scheduled Pinned Locked Moved
    2 Feb 22, 2018, 12:53 PM
    Feb 22, 2018, 10:26 AM
    1 Votes
    2 Posts
    2k Views
    S Feb 22, 2018, 12:53 PM

    @Conchi-de-Madrid

    I don’t believe there is currently a 64-bit version of TextFX.

  • J

    Updated Plugin Manager, now not showing ANY plugins!

    Watching Ignoring Scheduled Pinned Locked Moved
    3 Feb 21, 2018, 8:31 PM
    Feb 21, 2018, 7:24 PM
    0 Votes
    3 Posts
    3k Views
    C Feb 21, 2018, 8:31 PM

    See https://github.com/bruderstein/nppPluginManager/issues/91, should be fixed again

  • E

    How to set font style as Bold for all items in stylers.model.xml

    Watching Ignoring Scheduled Pinned Locked Moved settings beginner styles styleconfigurat
    2 Feb 21, 2018, 8:09 PM
    Feb 21, 2018, 6:53 PM
    0 Votes
    2 Posts
    1k Views
    E Feb 21, 2018, 8:09 PM

    <LexerType name="xml" desc="XML" ext="">
    <WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="000000" bgColor="A6CAF0" fontName="" fontStyle="1" fontSize="" />
    <WordsStyle name="CDATA" styleID="17" fgColor="FF8000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
    <WordsStyle name="ENTITY" styleID="10" fgColor="000000" bgColor="FEFDE0" fontName="" fontStyle="1" fontSize="" />
    ...
    </LexerType>

    … don’t know what’s responsible for this parameter …

  • M

    how to add questions in Notepad++

    Watching Ignoring Scheduled Pinned Locked Moved
    3 Feb 21, 2018, 6:26 PM
    Feb 21, 2018, 2:19 PM
    -1 Votes
    3 Posts
    3k Views
    G Feb 21, 2018, 6:26 PM

    Hello, @mohammed-bismillah,

    I rather agree with Peter’s post. To that purpose, read also this valuable article :

    http://www.catb.org/~esr/faqs/smart-questions.html

    Nevertheless, here is a simple solution for your batch file, below, which should clarify a bit how to proceed !

    @echo off title Game cls :menu echo. echo. echo Start : 1 echo Help : 2 echo Exit : 3 echo. set menu= set /p menu= if %menu%! == ! goto :EOF if %menu% == 1 goto game if %menu% == 2 goto help if %menu% == 3 goto :EOF :help cls echo. echo. echo Hit the CORRECT number and press ENTER. echo. echo. :game echo. echo. echo What is your name? echo. set name= set /p name= echo. echo Hello %name%! echo. echo. echo. :qt1 echo Who was the FIRST president of the USA? echo. echo Pierre Desperau : 1 echo George Washington : 2 echo. set qt= set /p qt= if %qt%! == ! goto qt1 if %qt% == 1 echo Incorrect & goto qt2 if %qt% == 2 echo Correct ! :qt2 echo. echo Who is the LAST president of the USA? echo. echo Donald Trump : 1 echo Guy Thevenot : 2 echo Emmanuel Macron : 3 echo. set qt= set /p qt= if %qt%! == ! goto qt2 if %qt% == 1 echo Correct ! & goto qt3 if %qt% == 2 echo Incorrect & goto qt3 if %qt% == 3 echo Incorrect :qt3 REM And so on ....

    Best Regards

    guy038

    PS :

    if you prefer to quit the batch file, with a simple hit on the ENTER key, on each question, just change each line

    if %qt%! == ! goto qt##

    by the line :

    if %qt%! == ! goto :EOF
  • C

    Notepad++ doesn't show a normal text file

    Watching Ignoring Scheduled Pinned Locked Moved
    8 Feb 21, 2018, 4:30 PM
    Feb 21, 2018, 9:52 AM
    0 Votes
    8 Posts
    7k Views
    G Feb 21, 2018, 4:30 PM

    Hello @cell-test, and All,

    I uploaded your test.log file and I got, as expected, a displayable file, like @MapJE71 did !?

    I just noticed that the Properties window of your file it gives a size of 2,264 Bytes. As for me, the size of the uploaded file is 1,501 bytes, only ! It’s an UTF-8 encoding file. where all characters code are under \x{0080}. So number of bytes = number of characters = 1501

    Remainder :

    To get the number of characters, of current file, looks at the length : zone, in the middle of the status bar

    To get the number of bytes, of current file, choose View > Summary… and see the line File length (in byte)

    I created a copy, with the UCS-2 LE BOM encoding ( which is the default Windows Unicode encoding ) and I got a file of 3,004 bytes. This is logical, as, with that encoding, each character is coded with two bytes + the invisible Byte Order Mark, in two bytes, as well => 2 x 1,501 + 2 for BOM = 3,004 bytes !

    Unfortunately, this value is also different from the 2,264 one ! So, like @MapJE71, I’m at a dead end, too ! It could be interesting to open that specific file with an hexadecimal editor, which will give you the exact code point of each character !

    Best Regards,

    guy038

  • E

    Author-mode available in Notepad++?

    Watching Ignoring Scheduled Pinned Locked Moved
    2 Feb 21, 2018, 12:47 PM
    Feb 20, 2018, 9:06 AM
    0 Votes
    2 Posts
    996 Views
    MAPJe71M Feb 21, 2018, 12:47 PM

    @Emiel-D AFAIK no.

    Anything that can provide this?

    See suggestions.

  • FujiyamaVolcanoF

    how to copy into multiple line into their orig line

    Watching Ignoring Scheduled Pinned Locked Moved
    3 Feb 21, 2018, 9:46 AM
    Feb 21, 2018, 8:46 AM
    -1 Votes
    3 Posts
    1k Views
    FujiyamaVolcanoF Feb 21, 2018, 9:46 AM

    @guy038 thanks
    you got upvoted

  • Bill WinderB

    Python 3 and Python scripts plugin

    Watching Ignoring Scheduled Pinned Locked Moved
    24 Feb 20, 2018, 10:11 PM
    Feb 10, 2018, 10:41 PM
    0 Votes
    24 Posts
    19k Views
    Bill WinderB Feb 20, 2018, 10:11 PM

    @Scott-Sumner and they are numbered! Perfect. Which essentially solves my problem.

    I hope! There is one further step. I will have to capture the name of the active tab and give it to NPPEXec.

    But that should be possible through the sci_sendmessage function (will look into that), since this is possible:

    sci_sendmsg SCI_GETSELECTIONSTART
    set local selStart = $(MSG_RESULT)

  • ntjessN

    Utilizing other plugins within a plugin

    Watching Ignoring Scheduled Pinned Locked Moved internal plugin copy paste rtf
    1 Feb 20, 2018, 9:20 PM
    Feb 20, 2018, 9:20 PM
    0 Votes
    1 Posts
    647 Views
    No one has replied
  • Joel SnyderJ

    how to link to my URL

    Watching Ignoring Scheduled Pinned Locked Moved
    25 Feb 20, 2018, 8:27 PM
    Feb 17, 2018, 12:18 PM
    1 Votes
    25 Posts
    11k Views
    Joel SnyderJ Feb 20, 2018, 8:27 PM

    Thanks so much, Guy –

  • C

    spaces dropped when pasting

    Watching Ignoring Scheduled Pinned Locked Moved
    3 Feb 20, 2018, 7:19 PM
    Feb 20, 2018, 3:59 PM
    1 Votes
    3 Posts
    1k Views
    C Feb 20, 2018, 7:19 PM

    Oh wow … you are right.
    It is not notepad++
    It is linux vi editing program is not copying the spaces.
    Thanks.

  • W

    How to add custom HTML Fold when Language = PHP?

    Watching Ignoring Scheduled Pinned Locked Moved html custom fol
    6 Feb 20, 2018, 4:21 PM
    Feb 19, 2018, 4:51 PM
    0 Votes
    6 Posts
    3k Views
    W Feb 20, 2018, 4:21 PM

    Here is the answer… (unless someone tells me it creaes another a problem…)

    The "echo’ command can include multiple lines as the simple example below illustrates.
    Note the single quote mark brackets the echo’d code since double quote marks are used within the echo’d code at various points…

    So for me this example code folds perfectly and in my real case actually runs :-)

    If anybody sees a problem with using the multiple line php echo to manage folds in mixed html and php code please let me know.

    Example: (To try it paste it into Notepad ++ and select PHP as the language)

    <?php // TABLE 1 – ROW 1 – DISPLAY PAGE HEADER – THEN DISPLAY DATA INPUT FORM
    echo ’
    <table style=“width: 1233px; height: 595px; text-align: left; margin-left: auto; margin-right: auto;” border=“1” cellpadding=“2” cellspacing=“2”>
    <tbody>
    <tr>
    <td style=“vertical-align: top; width: 150px; text-align: center;”>
    </td>
    <td style=“vertical-align: top;”>
    ';
    $page_name = “mypage.php”;
    include ‘inc_header.php’;
    echo ’
    </td>
    <td Style=“vertical-align: top; width: 150px;”>
    </td> <!-- t1 tr1 td3 -->
    </tr>
    ';
    ?>

  • Vito KorleoneV

    How to remove all spaces within the time frame and keep the hyphenation at the end of the lines?

    Watching Ignoring Scheduled Pinned Locked Moved
    2 Feb 20, 2018, 10:17 AM
    Feb 20, 2018, 8:14 AM
    0 Votes
    2 Posts
    879 Views
    G Feb 20, 2018, 10:17 AM

    Hello, @vito-korleone,

    I’m really disconcerted !! Unless I misunderstood your post, it’s quite an elementary task to achieve :-))

    Open the Replace dialog ( Ctrl + H )

    Type in a single space character in the Find what: zone

    Leave the Replace with: zone EMPTY

    Tick the Wrap around option and the Normal search mode

    UN-tick all the other options

    Click on the Replace All button

    Remark :

    If you must delete the space characters, in a specific zone of your file, only :

    Do a normal selection of that zone

    Open the Replace dialog ( Ctrl + H )

    Type in a single space character in the Find what: zone

    Leave the Replace with: zone EMPTY

    Tick the In selection option and the Normal search mode

    UN-tick all the other options

    Click on the Replace All button

    Best Regards,

    guy038

  • D

    How to configure Notepad++ for compile in pascal

    Watching Ignoring Scheduled Pinned Locked Moved
    2 Feb 20, 2018, 6:51 AM
    Feb 20, 2018, 4:30 AM
    0 Votes
    2 Posts
    3k Views
    cipher-1024C Feb 20, 2018, 6:51 AM

    @Meta-Chuh posted an easy method to get the Plugin Manager here. After you get everything updated, you should be able to easily install NPPExec. If you already have NPP set up and you want to just download the Plugin Manager dll, @Claudia-Frank gave some good instructions here. The link she gave for the Plugin Manger is for the 64 bit version. If you’re using 32 bit try this link.

    Good Luck

  • E

    1 line code while wanting multiple lines

    Watching Ignoring Scheduled Pinned Locked Moved
    4 Feb 19, 2018, 12:50 PM
    Feb 19, 2018, 10:20 AM
    1 Votes
    4 Posts
    6k Views
    C Feb 19, 2018, 12:50 PM

    @Emiel-D

    so you are saying you do the same on desktop pc and notebook and
    if you open the file with npp on desktop you see multiple lines but if
    you open it with npp on notebook you only have one line?
    That would be strange. Do you use the same plugins on both?
    Maybe one of it is corrupting the file - but to be honest,
    I don’t see how. XML Tools has a linarize function, could it be that it is executed
    when loading a xml file?

    And no, there is no npp setting which needs to be applied.

    Cheers
    Claudia

  • Edward UlleE

    Add to AutoIt function list

    Watching Ignoring Scheduled Pinned Locked Moved
    4 Feb 19, 2018, 2:19 AM
    Feb 17, 2018, 3:25 PM
    0 Votes
    4 Posts
    2k Views
    Edward UlleE Feb 19, 2018, 2:19 AM

    @Claudia-Frank @extended is not a user defined function, but a part of AutoIt language. I found langs.xml thanks to you and added it and it is working. Thanks again.

The Community of users of the Notepad++ text editor.
Powered by NodeBB | Contributors