• 0 Votes
    6 Posts
    3k Views
    Marc OhanaM

    @gerdb42 As I use Notepad2 in french, in the search box (opened for replacement, on the left , what I expect “match case” to be in french is “respecter la casse” . And if on, it makes quite a difference : no more problem. Sorry for my post . Notepad2 is better even than I thought . What I did not realize is that “match case” was applying also inside the writing of utf-8 characters. Thanks for the help!

  • How can I change the size of the font used when printing?

    5
    0 Votes
    5 Posts
    7k Views
    guy038G

    Hello Frédéric, Thunder T, Heejoo Ham and All,

    You should have a look to the valuable post of ItzBobWright, one year ago, about the printing font size problem, described in the first part :-)) Refer to the link, below :

    https://notepad-plus-plus.org/community/topic/14/printer-font-size-modification

    The second part, relative to a way of updating a configuration file, in the %AppData% folder, may, also, be useful !

    Cheers,

    guy038

  • Basic question about Notepad++ sessions

    Locked
    4
    0 Votes
    4 Posts
    4k Views
    Claudia FrankC

    @Mário-Kliemann

    ? menu->Command line arguments…

    parameter in question = -openSession

    E.g. notepad++.exe -openSession C:\npp.session

    In addition, I’m not 100% sure to understand what your original question is.

    Cheers
    Claudia

  • Auto completion for parameter/option

    Locked
    4
    0 Votes
    4 Posts
    2k Views
    Jim DaileyJ

    @password636
    There are bunch of them in the plugins\APIs directory. Check out rc.xml.

  • Losing line number when switching between windows

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    dailD

    Do you have word wrap enabled? If so turn that off to see if it makes any difference.

  • Notepad++ Fonts

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Mário KliemannM

    @James-Yeoman
    AFAIK, it uses the system fonts.

  • Questions about Notepad++ project

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Ahmed S. M. MadhunA

    Thanks … will search there

  • Syntax highlighting for ld linker scripts

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    Claudia FrankC

    @Tom-Bates

    which ld are you using? gnu? Maybe a little bit more infos would be helpful.

    Cheers
    Claudia

  • txt files open as JSON files

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Paul-Menzel

    I assume you do have a %APPDATA%\notepad++ directory, correct?
    If so, stop npp, temporarily rename that directory, start npp and directory will be recreated.
    Does problem still exist?
    If not, stop npp, delete new directory and rename old one, start npp.

    Cheers
    Claudia

  • Feature request: Scroll through tabs

    Locked
    2
    0 Votes
    2 Posts
    2k Views
  • Compare two files for changes.

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    YaronY

    Hello David,

    Pavel Nedev’s development version is the best. It contains many improvements and bug-fixes.
    The repo is here and you can download the built DLL here.

    Place the DLL in the plugin folder.

    Best regards.

  • Set coding for .txt files permanently to OEM850

    Locked
    13
    0 Votes
    13 Posts
    9k Views
    PeteM92P

    Claudia,

    I forgot to mention, that this is also working in the installed version of NPP.
    So all working absolutely perfect!
    Thanks again

    Cheers Pete

  • File emptied and overwritten in crash - please help!

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • 0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Dil-Azat

    are you looking for Settings->Preferences->MISC->Auto-Indent ??
    The setting means you need to do the first indent and any subsequent indent on the same level
    is done by npp.

    Cheers
    Claudia

  • UTF-8 doc becomes ANSI doc !

    Locked
    24
    0 Votes
    24 Posts
    25k Views
    Claudia FrankC

    @gerdb42

    I agree that this would break the principle but on the other hand it could be beneficial as well.
    But, now as I’m typing I’m thinking, when this conversion takes place and you don’t know from which encoding it came from
    you might corrupt the document without knowing how to fix it.
    Yes - bad idea.

    Cheers
    Claudia

  • Find & replace with increment across multiple files

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    Jim DaileyJ

    Here is an AWK script that may help you. You can download GNU AWK from here: https://sourceforge.net/projects/ezwinports/files/gawk-4.1.3-w32-bin.zip/download

    # ************************************************************************** # AWK script to replace all occurences of FindStr with RepStrNNN. # Output files are the same name as the input files with ".ed" appended. # # Run it like this: gawk -f .\thisScript.awk <files to be edited> # # If this file is saved as repAll.awk in the current directory, and the # files to be edited are in directory c:\fileDir, then: # # gawk -f .\repAll.awk c:\fileDir\* # # ************************************************************************** BEGIN { # If FindStr contains any characters that have special regex meaning, # they must be prefaced with "\". For example: "Needed\* Here". FindStr = "replaceMe" RepStr = "ID" NumDigits = 3 # Number of digits to append to RepStr. # Controls leading zeroes, but does not # limit the total number (i.e. if there # are 10000+ replaces, then ID10134, for # example, will be generated). Number = 0 # Initial number to append. BatchFile = ".\\CopyAndDel.bat" # Name of batch file used to clean up. } FNR == 1 { print("@copy " FILENAME ".ed " FILENAME " /y >nul") > BatchFile print("@del " FILENAME ".ed >nul") > BatchFile } { while (match($0, FindStr)) { sub(FindStr, sprintf("%s%0*d", RepStr, NumDigits, Number++)) } print > (FILENAME ".ed") } END { print "If the '.ed' files look good, execute " BatchFile " to copy them over" print "the original files and then delete them." }
  • Function List for new language...

    Locked
    11
    0 Votes
    11 Posts
    11k Views
    MAPJe71M

    You’re welcome!

  • Changing keyboard shortcuts

    Locked
    6
    0 Votes
    6 Posts
    9k Views
    John SparkJ

    how this settings works in anyone other’s NP++ instance ?
    ty

  • [functionList.xml] What do these colons mean?

    Locked
    6
    0 Votes
    6 Posts
    3k Views
    MAPJe71M

    I’m actually in the process of creating the first update/overhaul for functionList.xml.
    Unfortunately it will only be a cleanup for the C parser not a correction, yet.

    Current state:

    <parser displayName="C source" id="c_function" commentExpr="(?s-m:/\*.*?\*/)|(?m-s://.*?$)" > <function mainExpr="^[\t ]*((?-i:static|const|virtual)\s+)?[\w:]+(\s+\w+)?(\s+|(\*|\*\*)\s+|\s+(\*|\*\*)|\s+(\*|\*\*)\s+)(\w+\s*::)?(?-i:\b(?!if|while|for)\b)\w+\s*\([^\)\(]*\)(\s*const\s*)?[\n\s]*\{" > <functionName> <nameExpr expr="(?-i:\b(?!if|while|for)\b)[\w~]+\s*\(" /> <nameExpr expr="[\w~]+" /> </functionName> </function> </parser>
  • how do you add an image into notepad?

    Locked
    2
    0 Votes
    2 Posts
    4k Views
    Claudia FrankC

    @ALLES-NL

    npp = text editor

    Cheers
    Claudia