• Resize plus sign for level groups

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC
    Hello Gregorio-Alonso-Calvo, if you mean by changing some configuration settings, afaik no, sorry. Cheers Claudia
  • Alphabetizing a list,

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    Claudia FrankC
    Hello Terry-Stone, select the text and then goto menu TextFX->TextFX Tools and choose one of the sort functions. Cheers Claudia
  • perl lexer broken

    Locked perl
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC
    Hello Hugh-Myers, the keywords can be added. Within the npp installation directory goto the …Notepad++\plugins\APIs directory and edit the perl.xml file accordingly. Regarding the references, it sounds like it was working before, wasn’t it? I checked the bug and features request and didn’t see any ticket referring to it. So if it was working and now doesn’t you may open a bug ticket here or if it wasn’t working before you may open a feature request here. Cheers Claudia
  • LanguageTool Plugin

    Locked spell checker languagetool plugin
    9
    0 Votes
    9 Posts
    8k Views
    CableWombatC
    Hi Claudia, ah, that explains a lot. That saves me from a lot of failing tries. Thanks for investigating!
  • Notepad crashes on startup...

    3
    0 Votes
    3 Posts
    5k Views
    Jess DaweJ
    I had an error similar to this and it seems to have been solved by moving the Notepad++ plugins folder to Windows\SysWOW64 (I created a Notepad++ folder for it there, for clarity). I’m setting up all my tools on a new Windows 10 laptop and this worked for another dll I had trouble with already. I also made copies of stylers.xml, config.xml and langs.xml from the stylers.model.xml etc supplied. This may only have been necessary due to not running as Administrator during setup. I installed from the zip file, rather than the installer, which maybe would have taken care of all these things.
  • selecting text using find with regular expression

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Zs LZ
    Thank you very much! I have to use the assertions in the regular expression as you did.
  • Find in Files (avoid) Filter

    Locked
    2
    0 Votes
    2 Posts
    4k Views
    Claudia FrankC
    Hello Maheedharan-Rengarajan, afaik there is exclude filter but what you can do is to use multiple extension at once like *.h *.cpp *.c Maybe this is another way to do it? Cheers Claudia
  • need help please

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    dailD
    No idea what kind of file that is but it looks like it isn’t meant to be edited with a text editor.
  • unix perl script problem...

    Locked
    6
    0 Votes
    6 Posts
    4k Views
    Robert S. IrrgangR
    Ok, thank you! I try it!
  • Language-MS ini missing.

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC
    Hello Tauriq-Esack, not sure if it was called MS INI before but right now I do have an INI language (under letter I) Is this be different to MS INI? Cheers Claudia
  • Bookmark image in source files

    Locked
    5
    0 Votes
    5 Posts
    4k Views
    YaronY
    Hi Claudia, That’s great. Thanks again. I appreciate your kindness. Regards.
  • Change End Of Line

    8
    0 Votes
    8 Posts
    7k Views
    Claudia FrankC
    Hello Bonnie, thank you and a happy new year to you as well. Cheers Claudia
  • fail to import xml langage

    Locked
    3
    0 Votes
    3 Posts
    6k Views
    barbuxB
    hi, i didn’t download the file properly (not the raw file). thank you for help and my best wishes for this new year.
  • Perl foldable text block

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    Claudia FrankC
    Hello Yves, one word of warning. Avoid using nested hides, this might confuse npp. Meaning, dont hide lines 2-12 if you hided lines 4-8 already. IMHO, language settings should be editable. All the basis is there to augment folding. I agree, for builtin languages we don’t have much possibility to add additional features or change the behaviour of the lexer. Most of it is done under the hood by the scintilla component. The big advantage so is speed and we don’t have to struggle with the lexer, which can be a pain in the … Cheers Claudia
  • multiple function types in functionList

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Kevin CryanK
    Thanks. I will give it try.
  • What standard for Regular Expressions is Notepad++ using?

    Locked
    5
    0 Votes
    5 Posts
    8k Views
    Tony De GrootT
    Hi guy038, I had used part of your first example - I used search for ^“”, but missed the rest of the line. Using the complete expression worked fine. Many thanks, Tony
  • dumb question, save as .csv

    Locked
    2
    0 Votes
    2 Posts
    10k Views
    Claudia FrankC
    Hello David-Bandey, csv stands for comma separated values but one must define where to put the commas, so there is no conversion possible without defining rules where to put the comma. Assuming there is a text like Do the right thing. It will gratify some people and astonish the rest. You can, for example, decide to split the text into Do the right thing. and It will gratify some people and astonish the rest. then you would put the comma after the first sentence but you can also decide to split it in three parts then you might possibly choose Do the right thing. It will gratify some people and astonish the rest. which would mean you have to set the first comma after the first sentence and the second comma after the word people. So you see there isn’t a one and only way to do this. If you can provide as a sample text then we might be able to offer some possible solutions. Cheers Claudia
  • Find in files returns 0 results

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    Claudia FrankC
    Hello Aled-Powell, one of the error sources could be permission problems. You use a non-priviledged account where as files stored in the directory belong to administrator only. Or someone set the permission that no one is allowed to read the files at all. Another possible issue could be that the directory isn’t really a directory but a hard/soft link or even worse a network link to an unknown formatted source. You think I’m jokeing, I went through all of this. And one of the most common problem when using npp and windows 10 together is/was that there are problems when starting npp in adminstrative mode. Now that I wrote this last sentence I reckon’ that I should have started with it. So please double check shortcut properties->compatibility. Cheers Claudia
  • Smart HighLighting for multiple view !

    9
    0 Votes
    9 Posts
    8k Views
    Claudia FrankC
    So let’s summarize. The script worked before but not as expected because the original version matched only whole words and not if the searched word is part of another word. To change this I changed editor.research('\\b{0}\\b'.format(selected_text), lambda m: matches.append(m.span(0))) to editor.research('{0}'.format(selected_text), lambda m: matches.append(m.span(0))) then I thought maybe there can be also a difference in notation therefore I included regex module import re and added the ignorecase flag to the research function. editor.research('{0}'.format(selected_text), lambda m: matches.append(m.span(0)),re.IGNORECASE) Which broke not only your uploaded code, which by the way is working for me, but also the python script plugin?? This is weird. There is nothing fancy here. re module is part of the standard python lib. OK, please comment the import re line # import re and change the editor.research … to editor.research('{0}'.format(selected_text), lambda m: matches.append(m.span(0))) and do another test. You do not need to do anything in the python script console, just open it, it serves as an error output window if something within the python code is wrong. For example if you add the re.IGNORECASE flag but you do not import re module first the error would be shown in the console window as soon as you double click on a word. Traceback (most recent call last): File "...\Notepad++\plugins\Config\PythonScript\scripts\Highlight.py", line 42, in sci_callback_DOUBLECLICK colorize() File "...\Notepad++\plugins\Config\PythonScript\scripts\Highlight.py", line 29, in colorize editor.research('{0}'.format(selected_text), lambda m: matches.append(m.span(0)),re.IGNORECASE) NameError: global name 're' is not defined May I ask you which OS, npp and python script plugin version you use? Cheers Claudia
  • How to remark out a line

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Arizona WillieA
    Thanks for the rapid reply. :) This is a game .ini file for Fallout 4. I followed your recommendation and will try it in a few minutes. Thank you very much. Well it seems to work. Game runs with no problem with the item remarked out. So unless I run into problems I will leave it that way. Thanks again.