• Can the lines that occur when folding code be turned off?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    Hello @TechTony2016,

    afaik, not yet supported by npp. If you have python script plugin installed you could do

    editor.setFoldFlags(0)

    Cheers
    Claudia

  • Error in installation of 6.8.8

    5
    0 Votes
    5 Posts
    4k Views
    Roy Ivan Louie TandocR

    Thank You so much for the help I have installed 6.8.8.

    Cheers
    Ivan

  • [regex help] Need to change [[ to [ in files

    5
    0 Votes
    5 Posts
    4k Views
    Claudia FrankC

    @guy038

    Skiing in the alps
    having 300 MBit internet connection
    and the patience to write such detailed answers,
    there must be something different in the french air
    maybe I should think of moving to france ;-)

    Cheers
    Claudia

  • Search and Replace using excel? Or other method

    Locked
    2
    -1 Votes
    2 Posts
    3k Views
    Scott SumnerS

    Try an Excel and not a Notepad++ forum?

  • I can't drag-and-drop Notepad++ v6.8.8

    Locked
    4
    0 Votes
    4 Posts
    5k Views
    Claudia FrankC

    Hello Marcelo-Luz,

    I assume I know what’s going on.
    You start npp as elevated process (as seen by Admin mode : ON) but, I assume,
    explorer was start with normal privileges. When you now, drag a file from explorer
    to npp you get that kind of behaviour as windows doesn’t allow it.
    In general, a process with lower privilege cannot drag something to a process with higher privileges. So, solution would be either to start explorer as admin as well or npp with normal privileges.

    Cheers
    Claudia

  • Scientific numbers (e/E) in User Defined Language

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Johan-Torstensson use e as the delimiter and allow nestung with numbers.

    Cheers
    Claudia

  • 0 Votes
    4 Posts
    3k Views
    Claudia FrankC

    @Tha-BeatBeest

    because you asking that kind of question I have to assume that you don’t know any programming or scripting language at all or
    that you want to achieve something together with npp which you didn’t mentioned yet.
    There is no one and only programming/scripting language. Every language has its strength and weakness and it simply depends on
    what you really want to achieve.

    Cheers
    Claudia

  • Style quirk in Windows 7

    Locked
    8
    0 Votes
    8 Posts
    5k Views
    Claudia FrankC

    Hello Bill,

    Thanks for the FABULOUS assistance, Claudia!

    your welcome.

    One other sort-of-related thing: when I was first trying this out several weeks ago, I started with a portable installation, and changes I made >in style configurator were not persistent. Close NPP and reopen, and you’re back to the default style settings.

    there are several portable versions out there and they behave differently in term how to store the data. I refer to the “official”
    portable version, which is the zip or 7z file you can download on the npp homepage. When using this one, it works as long as
    you use the same drive layout on all computers, which, I agree, isn’t normally the same.
    The reason is, that, for example, the theme stored in config.xml uses the complete instead of a relative path.
    You can change this by editing, with an editor other than npp, the config.xml directly but be aware that changing any other gui option would overwrite it again.
    Request to change this has been already adressed.

    So, current situation is like this

    <GUIConfig name="stylerTheme" path="D:\ProgramData\notepad++\themes\Bespin.xml" />

    but by changing it to

    <GUIConfig name="stylerTheme" path=".\themes\Bespin.xml" />

    it can be used on an usb stick without a problem.

    Cheers
    Claudia

  • Lots of "Unknown exception" errors appeared out of nowhere

    3
    0 Votes
    3 Posts
    2k Views
    Destroy666xD

    Thanks, it was the Session Manager plugin. It wasn’t updated for nearly a year though so no idea why it broke.

  • N++ Crashes when I try to use the "Save in:" dropdown

    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @PeteMan-Chernman ,

    there is no npp save in, only a save as. Could it be that you mad a mistake in that case, if not, then it might be a plugin
    which has introduced this and therefore the cause of the problem might be the plugin as well.
    If it was a mistake, can you post the debug info from your installation? Can be found under ?->Debug Info

    Cheers
    Claudia

  • Comparing

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Anna-Maria-Stechbarth maybe you one checkout the compare plugin?

    Cheers
    Claudia

  • Bugs in program

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Claudia FrankC

    @Łukasz-Gry it has been reported that Snapshot/Backup functionality can cause that kind of problem.
    To deactivate goto Settings->Preferences->Backup and uncheck enable session…

    Cheers
    Claudia

  • Different Font size with 2 documents side-to-side

    2
    0 Votes
    2 Posts
    3k Views
    dailD

    You probably have one of the sides zoomed in more than the other.

  • Select by columns?

    12
    0 Votes
    12 Posts
    121k Views
    Freon SandozF

    @guy038 Good one! It’s a bit confusing, and it took me a few tries to get it right, but for selecting a column of data in 17,000 lines it was the only way to go!

  • <source></source> and <target></target>

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    Hello Teo,

    I can only refer to this.

    Cheers
    Claudia

  • N++ crashes and erase last file i worked on

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    Hello @Lucas-Gravano,

    can you check if you have session snapshot and periodic backup enabled?
    If so, can you check if there is a backup of your work in the notepad\backup directory?
    Nevertheless, there are some reports, that this functionality seems to have caused some problems
    so you might consider to disable it.
    In addition, can you reproduce this behaviour? I assume Don and the devs would be interested to see
    why and how this happened.

    Cheers
    Claudia

  • Complicated search and replace

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    Hello @Nozomu-Ezomori,

    this depends highly on the real file content. I assume, from the given example, that it is a xml file, correct?
    If so, a script, written in a language which can handle xml documents, can easily do it as long as the xml node
    has an unique identifier like the parent node, or its node name etc…
    I assume it can also be done by using the mighty regular expressions if there is a pattern which can be identified.

    So, without having the real content, we can only give suggestions on how to solve it.

    Cheers
    Claudia

  • Add an end line to multiple files?

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    Claudia FrankC

    Hello @رمزي-غساسنة

    what about recording a macro?
    Open the file

    start recording press CTRL+END put in the line you want press save right click on tab and select close (optional) stop recording save macro with w meaningful name.

    For the other documents you only need to open document and run macro.

    Cheers
    Claudia

  • Help File - HTML page for Smart Highlighting missing

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Claudia FrankC

    Hello @Jim-Reid,

    thank you for pointing out this issue. In regards to renaming the file, if you right-click on the file and open
    Security tab you can select your user and choose Edit to assign the proper rights.

    Cheers
    Claudia

  • How can i get the option to edit with ++ on my right click with all files

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    Hello @SAFC-JONES,

    can you explain in more detail what

    … it wont allow me …

    means? Don’t you have the edit with notepad context menu entry anymore? Any error when trying to open the file? etc…

    Cheers
    Claudia