• CANNOT OPEN A SELECTED FILE BUT CAN OPEN OTHERS

    Locked
    1
    0 Votes
    1 Posts
    732 Views
    No one has replied
  • How to remove languages from menu

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC
    @Peter-Brand Settings->Preferences->Language and there you can disable the lexers you don’t need. Cheers Claudia
  • Open screen looks like older version of Windows (Vista)

    Locked
    3
    1 Votes
    3 Posts
    1k Views
    Patrick ErmerP
    Thank you! That took care of it.
  • v7.5.6 Forcing me to save "new X" on exit

    4
    0 Votes
    4 Posts
    1k Views
    Scott SumnerS
    @James-Beck it was the Auto Backup that ended up unchecked Please try your best to be accurate when you post–people will search for solutions to the same problem in the future and will discover your post, and then they will wonder “What is Auto Backup and where is its checkbox?” A better version of your posting would be: Yep, that was it. More specifically, it was the "Enable session snapshot..." option that ended up unchecked. Didn’t even realize that it was a function related to that option. Thanks!
  • Pin Files to Opened File History

    Locked
    2
    1 Votes
    2 Posts
    1k Views
    Claudia FrankC
    @ZS-Leo in the same way that MS Word 2016 allows? No,afaik not. is there a suggestions or request area for Notepad++ Yes, see what @peterjones wrote here. Cheers Claudia
  • 0 Votes
    4 Posts
    1k Views
    Brent BlumensteinB
    Something happened and this issue disappeared. I am sorry to report that I cannot identify what I did to cause reversion to expected behavior. Ah well.
  • .htaccess Backup Failed

    5
    0 Votes
    5 Posts
    3k Views
    Laurie StearnL
    Got this error as well, even when sharing the folder with EveryOne and allowing changes. The Backup folder is marked read-only, and there is also a problem removing that property. But no issue at all when running N++ as Admin - must be because my username (owner of folder) has admin credentials.
  • Working with XML in Notepad ++ (selecting/moving)

    Locked
    2
    0 Votes
    2 Posts
    4k Views
    Claudia FrankC
    @Chad-Briggs is there an easy way to select an entire tag if your at the start of a long one? So if I have a <name> tag in the XML doc, can i select that first name tag/bracket and use a shortcut to highlight down to the closing bracket? Plugin HTML Tag has such a functionality which works with xml as well. If a tag is collapsed, is there a way to select all of the tags contents while it’s collapsed for copy/pasting? put cursor in front of the tag, press shift, hold it and press down arrow key and maybe while still holding shift key press home(pos1) key. If i have a xml document collapsed in the view, is there an easy way for me to drag and drop rearrange? Once selected liked described before you could use the mouse and move it around but to be honest, I find this a little bit cumbersome. Cheers Claudia
  • Find all in current document don't provide father object

    7
    0 Votes
    7 Posts
    3k Views
    Gogo NeatzaG
    @Massimo Araldi The information about the father object is available using Notepad++ and XPatherizerNpp plugin: all you have to do is search the XPath and watch the results window.
  • I need help trying to run Python in Notepad++

    Locked
    5
    0 Votes
    5 Posts
    14k Views
    David TinocoD
    Hey Claudia, Thank you so much, it works now :). I feel like a complete hackerman now haha :). Have a lovely day. Regards, David
  • 0 Votes
    3 Posts
    3k Views
    Rufus SmithR
    @Rodney-Ramsay The licensing refers to the program itself, and has nothing to do with what you create using the program. You only need to worry if you write a program to sell (or give away) that uses part of the Notepad++ source code.
  • 0 Votes
    2 Posts
    1k Views
    Claudia FrankC
    @SalviaSage 1 +2 give it a try and see. A session is basically a shortcut for opening a lot of files in one go. The “eye” is just another way of monitoring, it tries to simulate the unix tail command. If you have API files (the once you see under plugins\APIs) notepad can offer assistance in showing you a list of possible words you want to add Cheers Claudia
  • My number are symbols ?

    Locked
    2
    0 Votes
    2 Posts
    949 Views
    Claudia FrankC
    @Zach-Schultz might be an issue that your font is broken/corrupt. What if you choose a different one? Settings->Style Configurator->Global Styles->Global override check enable global font and try one of the fonts in the font style dropdown list. In addition, some notebooks offer additional function keys, might it be that you activated this accidentally? Cheers Claudia
  • [Help] Do not find File type : 'all types' when file open (Ctrl + o)

    Locked
    2
    0 Votes
    2 Posts
    996 Views
    Claudia FrankC
    @이동건 not 100% sure I understand your issue but maybe it is related to the new style settings. Settings->Preferences->Default Directory and then the setting Use new style dialog … Cheers Claudia
  • How to start notepad++ in Linux command line?

    Locked
    2
    0 Votes
    2 Posts
    13k Views
    Claudia FrankC
    @Sun-Yuan depending where you installed it you need to modify the call, basically you start wine and provide notepad.exe as the parameter to be executed by wine. So something like this /usr/bin/wine /disc2/home/chalet/.wine/drive_c/programs/x64/newest/notepad++.exe Cheers Claudia
  • 1 Votes
    2 Posts
    1k Views
    Scott SumnerS
    @Frederick-Solebo Yes, very possible with the use of Regular expression search as follows: Find what zone: (?-is)sky.+blue Search mode: Regular expression You should be able to deduce what the .+ does. The (?-is) at the beginning indicates 2 things: case of sky and blue must match exactly (the -i part) the . will NOT match end-of-line characters (the s part, but note that the - from earlier effectively makes this -s) Probably this is confusing, so a better explanation is that the i stands for (case) insensitive, so -i means NOT case insensitive, or rather case sensitive (meaning case must be exact for a match to occur) A better explanation for the s part: (?s) means that any . characters occurring will match one character of any type (including end-of-line characters). (?-s) means that any . characters occurring will match one character of any type EXCEPT it won’t match the end of line characters (carriage return, line feed).
  • [Bug] Running macro multiple times fails, line by line works

    Locked macro bug
    2
    0 Votes
    2 Posts
    1k Views
    guy038G
    Hello, Anton, and All, If you want to run your buggy macro, Nth times, be sure that : The cursor is located at the very beginning of the first line val:descr A physical line-break ( CR+LF or LF ) exists at the end of the nth line As for me, I did not notice that issue ! Even, holding down the 3 keys of the assigned shortcut ( Ctrl + Shift + = ), the macro changes each line, one after another, without any trouble ;-) Here is, below, my code of the buggy macro, with N++ v7.5.6, on an ( old ! ) Win XP SP3 system <Macro name="buggy" Ctrl="yes" Alt="yes" Shift="no" Key="187"> <Action type="0" message="2442" wParam="0" lParam="0" sParam="" /> <Action type="0" message="2177" wParam="0" lParam="0" sParam="" /> <Action type="0" message="2180" wParam="0" lParam="0" sParam="" /> <Action type="0" message="2451" wParam="0" lParam="0" sParam="" /> <Action type="1" message="2170" wParam="0" lParam="0" sParam=" " /> <Action type="1" message="2170" wParam="0" lParam="0" sParam="=" /> <Action type="1" message="2170" wParam="0" lParam="0" sParam=" " /> <Action type="0" message="2179" wParam="0" lParam="0" sParam="" /> <Action type="1" message="2170" wParam="0" lParam="0" sParam="," /> <Action type="0" message="2300" wParam="0" lParam="0" sParam="" /> <Action type="0" message="2453" wParam="0" lParam="0" sParam="" /> </Macro> A second and faster solution could be to execute a Search/Replacement, with the the litteral strings, in normal search mode, on all text of a previous selection. So : First, select your block of val:descr lines Open the Replace dialog ( Ctrl + H ) Find what : val:descr Replace with: descr = val, Tick the In selection option Select the Normal search mode Click on the Replace All button Voilà ! Best Regards, guy038
  • Keep only specific links

    Locked
    4
    -1 Votes
    4 Posts
    2k Views
    Scott SumnerS
    @T-C Again, what you are trying to achieve is vague. You’re not going to get the best help that way (and you may even get down-voted again). So…first you wanted to delete text, now you want to mark text…which is it? You can match a number that is different every time by using \d+ in the expression where the number occurs.
  • [Help] Function list doesn't support my language.

    15
    -1 Votes
    15 Posts
    6k Views
    SalviaSageS
    I just tested this new code here, and it doesn’t catch the comments or the strings incorrectly. Thanks a lot for this! I am trying to combine the table support from the code above into this new code.
  • How to create Custom Language in Language Tab

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    TroshinDVT
    https://prnt.sc/jaoimh