• Hi. Can I get some help? Please.

    Locked
    4
    0 Votes
    4 Posts
    2k Views
    Scott SumnerS

    @Vasil-Georgiev

    2 pieces of advice:

    Be sure you know what you are doing If you are confident of #1, use HxD editor, NOT Notepad++, to “change some things”
  • Supporting for Vietnamese combines encoding in Windows

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    guy038G

    Hello, @shhlkien,

    Claudia is right about it : your present version of the Monaco font cannot reproduce the glyph of the character ( “LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE”, of Unicode code-point 1ED5 )

    This character is part of the Unicode Latin Extended Additional block, which describe 256 characters, from Unicode code-point 1E00 to Unicode code-point 1EFF. Refer to the link, below, to get the complete list of these characters

    http://www.unicode.org/charts/PDF/U1E00.pdf

    Now, I found out, a nice monospaced font, named Monaco for Powerline, with Euro sign and slashed zero, proposed by Daniel Shæfer ( alias epegzz ), which works on Windows configurations and, probably, on OSX ones ! You can download it from the link, below :

    https://gist.github.com/epegzz/1634235/raw/4691e901750591f9cab0b4ae8b7c0731ebf28cce/Monaco_Linux-Powerline.ttf

    Consult, also, the page :

    https://gist.github.com/epegzz/

    Once this font installed, on your operating system, your text chào buổi sáng should be correctly displayed :-))

    Only 10 characters, ( from 1E9C to 1E9F and from 1EFA to 1EFF ), out of the 256 characters, of the Latin Extended Additional block, do not have any glyph, with the Monaco for Powerline font. These are, principally, some medieval characters + the Latin Capital German letter Sharp S, of code 1E9E

    Hope this post will help you !

    Best Regards,

    guy038

  • 0 Votes
    5 Posts
    2k Views
    Scott SumnerS

    BTW, an issue was created for what I was just talking describing:
    #3640 – Backward-direction checkbox enabled with Reg Exp search mode (at N++ startup)

    …but discussion on it kind of got tied up with this issue:
    #3533 – <<Find" (Find Previous) button is disabled for “Regular expression” search

    …and sadly, none of this has gotten any attention to this point.

  • 0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @David-Habier

    I’m not 100% sure but I don’t think so. It’s been a while since I did automated installation for npp.
    If the newer versions are still behaving the same then you might need to create links (hard-/soft-/junctions …) to achieve what you are looking for.

    Cheers
    Claudia

  • jslint and jshint

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @ThosRTanner

    did you see this?
    Although not sure if this is related to your problem.
    I’m not a java developer but as far as I understand jslint and jshint are tools for code quality assurance.
    If so, you might be able to run the newer versions with nppexec plugin.

    Cheers
    Claudia

  • CSS not accepting all comands

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    decodermanD

    Isn’t that a browser problem?
    I’m sure NPP can ‘read’ any file but the parsing is done in a web browser.
    Or maybe I misunderstand your problem.

  • shortcut keys for symbols and diacritics just like in MsWord?

    3
    0 Votes
    3 Posts
    1k Views
    Gogo NeatzaG

    If you must use a shortcut (from Notepad++) :
    Create the shortcut in windows using windows Explorer and then you can use it from Notepad++ with help from the NppExec plugin.

  • Bookmark lines regex

    Locked
    5
    0 Votes
    5 Posts
    2k Views
    Meta ChuhM

    it works on any similar regex engine eg php functions like preg_match_all()

    but you have to make sure to escape all characters that would be interpreted as a regex pattern part instead of a character you are searching for

    eg: if you use / as a regex start and end delimiter character, you have to write \/ for every slash you want to find to make regex search for the character /

    so /s/[0-9]+/1/ in a php example where you use / as regex start-end delimiters it has to be rewritten to:

    preg_match_all("/\/s\/[0-9]+\/1\//ms", $source_text, $matches_array);

    or you can use a different delimiter character:

    preg_match_all("#/s/[0-9]+/1/#ms", $source_text, $matches_array);

    then if you search for the physical character # you’ll have to write \#

  • Windows 10 file associations and ShellExecute("edit"...

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    PeterJonesP

    As I mentioned in another thread, my registry associates .txt with the HKCR\txtfile key; yours may be different: you can look in HKCR\.txt to determine the right association for your machine. Assuming my setup:

    You’ll notice the three keys “open”, “print”, and “printto”: mine does not have an “edit” key. So if they are really using the hardcoded “edit” key, rather than the default action (listed here as HKCR\txtfile\shell:(Default)=open), then it’s a poor choice on their part, because there is no guarantee that the “edit” key exists for a given association on a given machine.

    !!WARNING!! What I am about to explain involves editing the registry. This has associated risk, and should only be followed if you understand everything said, and are willing to take all responsibility for any change in behavior that occurs in your system. I make no guarantee or waranty regarding the effectiveness or safety of the following. (If your computer stops working, or doesn’t work the way you want it to, it’s not my fault.) Use at your own risk.

    You may be able to work around their choice. Right click on shell, select New Key = edit. Right click on edit, select New Key = command. Left click on open > command, double click on (Default), and copy the path to NPP (if your default isn’t “open”, but some other key, then use the command from that key, instead); left click on edit > command, double click on (Default), and paste the path to NPP. Exit the registry editor. (Some people say that they need to reboot, or at least log out and back in, or perform other similar actions to make sure the registry has fully updated… but my guess is just closing the registry editor and closing/reopening the third-party program will be sufficient.) In general, this should create the new “edit” action, which will execute the same command that the “open” action executes.

  • Notepad not keeping text of unsaved tab, like before.

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    itrelatedI

    @decoderman

    Enable session snapshot and periodic backup, wasn’t ticked!

    It was before and i haven’t un-ticked it. No idea how it got un-ticked.

    Anyway, thanks a lot for this. I really needed it sorted.
    Have a great day!

  • R function sent from np++ to R console does not work

    6
    0 Votes
    6 Posts
    3k Views
    Frank OrellanaF

    You should also post a bug in the plugin site: https://github.com/halpo/NppToR/issues or https://sourceforge.net/p/npptor/bugs/

    Actually there’s a similar bug posted in there which might be of help to you: https://github.com/halpo/NppToR/issues/8

  • Want more user-defined keywords in Style configuration

    4
    0 Votes
    4 Posts
    2k Views
    Công Cà CuốngC

    @ decoderman

    I have tried your solution, but this field styleID=“16”, it seems to be conflicted :)

    It did not word for me :(

  • Find & Replace w/multiple instances? (using a conversion file)

    3
    0 Votes
    3 Posts
    2k Views
    Scott SumnerS

    @Perry-Sticca

    I think the fact that you didn’t give any example data in this thread, but you did in that other thread, had something to do with your lack of replies (data is power!). It happens a lot here where people just throw out a bunch of vague thoughts and hope people can read their minds and provide answers. I’m not saying that your description here was bad…but just like a picture is worth 10000 words, so is some data. :-D

  • Notepad++ and wrong ANSII encoding

    4
    0 Votes
    4 Posts
    5k Views
    guy038G

    Hi @luciferqam86, @claudia-frank and All,

    Is it better if you uncheck the Autodetect character encoding option, in Settings - Preferences… - MISC ?

    Sometimes this auto-detection causes some problems, instead of avoiding them :-D

    Best Regards,

    guy038

  • Notepad++ find written words or phrases

    13
    0 Votes
    13 Posts
    43k Views
    guy038G

    Hello, @alp-koski, @decoderman, @scott-sumner, @claudia-frank and All

    Scott, a solution, a bit complex, for marking the last duplicates, of the user’s text, could be :

    Duplicate all the text, just after the present one, by the actions Ctrl+A, Ctrl + Fin and Ctrl + V

    On that copied text, exclusively :

    Suppress all the lines, which do not have a duplicate, with the global regex replacement :

    SEARCH (?-s)^...(.+\R)(?s)(?!.*\R(?-s)...\1) and REPLACE Leave EMPTY

    Execute an ascending lexicographically sort ( Add a line break to the last sorted line, if necessary )

    Suppress all the lines, which do have a duplicate, with the global regex replacement :

    SEARCH (?-s)(.+\R)\1+ and REPLACE \1

    At this point, the copied text should contain, only, all the lines of text, having duplicate(s)

    Then, on all the file contents, perform the global mark action, with the regex :

    SEARCH (?-s)^....(.+\R)(?s)(?=.*\R(?-s)....\1)

    Finally, delete the last part ( coming from the initial copied text )

    Cheers,

    guy038

  • Replace differing text with one text

    9
    0 Votes
    9 Posts
    13k Views
    guy038G

    Hello @savey-traveller and @meta-chuh,

    I’m quite late but here is a more simple syntax, for your regex S/R :

    SEARCH \w+ +(?=GG1_4859) , with a space between the two + symbols

    REPLACE new_wagon\x20

    Notes :

    The first part \w+ + looks for a non-null range of consecutive word characters ( upper-case letter, lower-case letter, accentuated letter or digit ), followed by a **non-null range of consecutive space characters

    But, ONLY IF it’s followed by the exact string GG1_4859, (?=GG1_4859)

    If so, the word characters and space character(s), located before the string GG1_4859, are simply replaced by the exact string new_wagon, followed by a space character, \x20

    So, given the original data :

    EngineData ( gg1_4859 GG1_4859 ) EngineData ( gg1_1234 GG1_1234 ) EngineData ( hvycoach GG1_4859 ) EngineData ( hvycoach23a GG1_4859 ) EngineData ( gg1_4872 GG1_4872 )

    you should obtain the text, below, where, only, the lines 1, 3 and 4 have been modified -:))

    EngineData ( new_wagon GG1_4859 ) EngineData ( gg1_1234 GG1_1234 ) EngineData ( new_wagon GG1_4859 ) EngineData ( new_wagon GG1_4859 ) EngineData ( gg1_4872 GG1_4872 )

    Best Regards,

    guy038

  • Starting to learn HTML initial questions

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    MarkInEvergreenM

    To be clearer, I start my learning today so there’s not much about an editor that I would assume.

    Not finding a reset or specific HTML setting I checked off options that seemed to be applicable. I did set tag completion.

    I added a reloader extension.

    Thanks for the tips–appreciated.

    Mark

    Thanks for the tips.

  • Notepad++ cannot open xml files even with the xml tools plugin installed

    Locked
    4
    0 Votes
    4 Posts
    4k Views
    Claudia FrankC

    @Question2

    yes, I can edit xml without a problem.
    By disabling plugins I mean rename the …\notepad++\plugins directory so it cannot
    find any plugins. Depending on your configuration it is either the one under %APPDATA%\notepad++ or the one under INSTALLDIR\notepad++.

    Cheers
    Claudia

  • 0 Votes
    3 Posts
    3k Views
    guy038G

    Hello, @luthando hanana, @gerb42 and All,

    If we supposed that :

    All your lines, normally, begin by an number-id, followed by a | character

    Some of them are stuck to the previous one, with the syntax |number-id|

    you could use the regex S/R, below :

    SEARCH \|(?=\d+\|)

    REPLACE \r\n ( or \n if you’re using an Unix file )

    Notes :

    The Vertical Line character, |, must be escaped to be seen as literal, because it’s a special regex character

    The search regex looks for a single Vertical Line character, \|, ONLY IF it’s followed by some digits \d+ and a second Vertical Line character, \|

    In replacement this Vertical Line character is, simply, replaced by a line break

    Best Regards,

    guy038

  • switching between virtual desktops

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Duncan-Fraser

    yes, unfortunately a known issue and has been reported already but doesn’t have high priority.
    One user mentioned that this happens only if Settings->Preferences->Misc->Minimize to system tray is checked - maybe you wanna give it a try.

    Cheers
    Claudia