• No response after moving plugin window

    7
    0 Votes
    7 Posts
    3k Views
    chcgC

    Ever tried the minimalist package from:

    https://notepad-plus-plus.org/download/v7.3.3.html

    -> no plugins and no installation. This should give you a hint if one of the plugins is a problem or somewhere in your local config there is an issue.

  • Inconsistent double-click selection of quoted text

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Ultra Edit themes

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Making an encryption program

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Jim DaileyJ

    I’m sure many, many people do; however, the only one that matters is you. If you were given this assignment with absolutely no instruction on how to do it, then you are in the wrong class. Otherwise, you need to use the resources given you and figure it out for yourself.

  • Select variables with dollar sign ($) in PHP scripts

    12
    0 Votes
    12 Posts
    8k Views
    Carlo CampinotiC

    now there’s an option for that in Settings -> Preferences -> Delimiter, credits: http://stackoverflow.com/a/42545984/2006698

  • 0 Votes
    2 Posts
    1k Views
    PeterJonesP

    The Compare Plugin can show the differences between two files – it’s a line-by-line comparision, similar to the linux diff tool. I don’t know if that’s sufficient for you, or whether you were expecting more “expert knowledge” embedded in this hypothetical comparison-tool.

    (If you don’t see Plugins > Compare, you may need to install a new copy of the Compare Plugin – easy enough to do thru the Plugins > Plugin Manager)

  • How can I have D syntax highlighting?

    Locked
    6
    0 Votes
    6 Posts
    3k Views
    GikoskosG

    Wow thank you! I didn’t think that it was due to the fact that i changed the theme. Changed it back to the default and works like a charm!

  • Am I too dumb or is UDL 2.x buggy?

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • FunctionList.xml Regular Expressions not parsing properly

    17
    0 Votes
    17 Posts
    8k Views
    MAPJe71M

    FYI: The newest functionList.xml has a language ID table as comment at the top of the associationMap-node.

  • Highlight Text Behavior Change with 7.3.2

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    miaXcovaM

    Please delete this post. Wrong forum. Thanks!

  • Changelog opens all the time

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Regex expression conversion from ultraedit

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    AdrianHHHA

    There is an * (asterisk) missing before the $ (dollar), that means the expression you show should not work in Ultraedit (unless it has a bug). Use the expression: ^.Attribute\sName.*IsSelectable.*$

  • Python / Lua Script: Detect if a modifier is pressed when running a script

    60
    0 Votes
    60 Posts
    56k Views
    YaronY

    Hello Claudia,

    did try to understand what the difference could be but …

    I would love to see why our machines behave differently but without a debugging environment it’s hard to track down the issue…

    I apologize for not being clear enough in my last post.
    In “Very nice” I meant to confirm the issue was solved by adding console.show(). :)

    The file StaticDialog.cpp has a function makeRTLResource.
    Within the function there is this if condition

    Thank you very much for that too.
    A couple of years ago Dave uploaded a PythonScript v1.1.1 without committing the changes.
    As your script works perfectly, I’d rather keep using v1.1.1.

    Many thanks again for your kind help. I do appreciate it.

    Best regards.

  • Double click selects into previous line

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    YaronY

    Hello Stefan,

    I have encountered a similar issue in NPP v7.3.2 as well.
    Is it consistent on your machine?
    On mine it seems random and happens on 1 out of 10 NPP startups.

    It would be great if the experts here would have a look. :)

    Thank you.

    Best regards.

  • CTRL+V pastes empty 'string' in Find and replace window

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Ton SmitsT

    With some further testing I found the following.

    While going through the menu I clicked Edit -> Copy to clipboard -> and picked one of the options Copy filename to clipboard

    Then I opened the Find window (ctrl+f) and then the ctrl+v works.

    I also tried to copy and paste the text that I wrote in the Find field and then it also works. And any text I copy from another application, eg. from the internet browser, will just paste as usual.

    The only thing that does not work is a text that I copy from the main text window and then try to past in the Find field.

    Very weird…
    Hopefully anybody can help me with this.

  • Problem writing to a FatFs USB filesystem

    8
    0 Votes
    8 Posts
    4k Views
    Claudia FrankC

    @dhalbert

    Thank you for letting us know.
    But I’m still a little bit confused about notepad behaving differently to npp.
    After you mentioned the differences about createfile and fopen I tried to understand
    what’s going on and it started being more confusing as fopen seems to do createfile
    under the hood. Still don’t understand it completely.
    If I find something valuable I will post it in this thread.

    Cheers
    Claudia

  • How to: Match Nested Pairs closed by END

    8
    0 Votes
    8 Posts
    4k Views
    MAPJe71M

    Hi @guy038,

    Thanks for sending “A01466.headed.xml.txt”.
    Confirming your findings with some additions, note the influence of “wrap around”.
    Tested on a Desktop running Windows XP Home + Sp3 with Windows Classic GUI ;-)
    Need to get my Windows 10 x64 ready to be able to dig in and debug this!

    Regex A: (?si)(?<=\W)(man_n)((?:\W+\w+){0,50}\W+)(city_n)(?=\W)|(?<=\W)(?3)(?2)(?1)(?=\W)
    and
    Regex B: (?si)(?<=\W)man_n(?:\W+\w+){0,50}\W+city_n(?=\W)|(?<=\W)city_n(?:\W+\w+){0,50}\W+man_n(?=\W)
    and
    Regex D: (?si)(?<=\W)city_n(?:\W+\w+){0,50}\W+man_n(?=\W)|(?<=\W)man_n(?:\W+\w+){0,50}\W+city_n(?=\W)

    Pass i.e. one match even after repeated search:

    Find w/ wrap around; Using RegexTester (by @Claudia-Frank); Using RegexBuddy w/ boost::regex 1.58-1.59 ECMAScript (default) flavor

    FAIL:

    Find w/o wrap around - “Can’t find text”

    Regex C: (?si)(?<=\W)(city_n)((?:\W+\w+){0,50}\W+)(man_n)(?=\W)|(?<=\W)(?3)(?2)(?1)(?=\W)
    and
    Regex G: (?i)(?(DEFINE)(\bcity_n\b)((?:\W+\w+){0,50}\W+)(\bman_n\b))(?1)(?2)(?3)|(?3)(?2)(?1)

    Pass i.e. one match even after repeated search:

    Using RegexTester (by @Claudia-Frank); Using RegexBuddy w/ boost::regex 1.58-1.59 ECMAScript (default) flavor

    FAIL:

    Find w/ wrap around - toggles between two matches on repeated search (partial and complete text); Find w/o wrap around - “Can’t find text”

    Regex E: (?i)(?(DEFINE)(\bcity_n\b)((?:\W+\w+){0,50}\W+)(\bman_n\b))(?<=\W)(?1)(?2)(?3)(?=\W)|(?<=\W)(?3)(?2)(?1)(?=\W)
    and
    Regex F: (?i)(?(DEFINE)(\bcity_n\b)((?:\W+\w+){0,50}\W+)(\bman_n\b))(?<=\W)(?:(?1)(?2)(?3)|(?3)(?2)(?1))(?=\W)

    Pass i.e. one match even after repeated search:

    Using RegexTester (by @Claudia-Frank); Using RegexBuddy w/ boost::regex 1.58-1.59 ECMAScript (default) flavor

    FAIL:

    Find w/ wrap around - toggles between two matches on repeated search (partial and complete text); Find w/o wrap around - toggles between two matches on repeated search (complete text and “Can’t find text”)

    Regards,
    Menno

  • How to put words into expressions?

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Ge ToG

    Sorry for not giving many detail, but thank you!

  • How do I connect local files to server?

    Locked
    7
    0 Votes
    7 Posts
    5k Views
    Jim DaileyJ

    @Andrea-Barnett

    I have found WinSCP (mentioned by cmeriaux above) to be very easy to use. You can even configure it to let you edit files on the server using Notepad++ on your local machine!

  • Explore context menu call to NPP no longer opens the selected file

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Harry BinswangerH

    I’m using win 7 32 bit with NPP 6.6.7
    Debug Info not showing under ? (but I’ve seen it there before)