• Modify the C++ xml language file to include math functions

    8
    0 Votes
    8 Posts
    1k Views
    PeterJonesP

    To any future readers:

    There’s actually an option #4 and #5 that didn’t exist, or that I didn’t know about, in 2021:

    v8.6.6 added the ability to have the GLOBALCLASS style, which gives you a separate keyword list. see this post for how to use it

    In this post, I show how to use a script to enable the “substyle” feature of Scintilla/Lexilla, which allows adding new keyword lists to certain lexers. Fortunately, the C++ lexer is one. The instructions in that post are for PHP, but if you do the edits in the CPP_SubstyleLexer and append the color/keyword-list info to the SCE_C_IDENTIFIER element, you can have your own custom lists of keywords for C++.

  • Regex - Find Upper Case Followed by Its Lower Case Version

    4
    0 Votes
    4 Posts
    1k Views
    guy038G

    Hello, @Sylvester-Bullitt, @peterjones, @coises and All,

    The @coises’s answer is quite clever. Personally, I ended up with this search/mark regex :

    SEARCH / MARK (?=(?-i:\u\l))(?i:(\u)\1)

    which uses a look-ahead expression at the beginning, instead of the look-behind expression at the end of the @coises’s regex :

    (?i:(\u)\1)(?<=(?-i:\u\l))

    You could say: it’s a minor difference, but it isn’t !! Indeed, as our Boost regex engine dos not allow look-behinds containing non-fixes expressions, my version has the advantage to work with any syntax of the look-ahead !

    For example, from the INPUT text :

    Aaaaaaaa Axxxxxx Bbbbbbbbbbbbbbbbbbbb Bxxxxxx Cccc Cxxxxxx AAAAAAAA Axxxxxx BBBBBBBBBBBBBBBBBBBB Bxxxxxx CCCC Cxxxxxx

    The regex (?=(?-i:\u\l+))(?i:(\u)\1+) would mark the left part of the first three lines, before the space char

    But the regex (?i:(\u)\1+)(?<=(?-i:\u\l+)) would just display the message Find: Invalid regular expression

    Best Regards,

    guy038

  • phonetic transformatios

    5
    0 Votes
    5 Posts
    204 Views
    caryptC

    there might be dictionary list with additional phonetic (IPA) representation . so working on the phonetics would be better.

    so the concept of soundex and other phonetic algorithms is to transform phonem-types (like fricatives) into a representating number, a number string is generated which flattens out many tiny differences and makes words basically constructed.

  • Notepad++ does not see an NAS

    4
    0 Votes
    4 Posts
    253 Views
    gerdb42G

    @Robert-Guertin

    In addition to what @PeterJones wrote, you may always use the UNC Notation
    \\<ServerName>\<ShareName>\<filepath>
    to access your file, no matter if running as Admin or not.

  • Ctrl+F (Search/Find) window turns up transparent, do you get that too?

    4
    0 Votes
    4 Posts
    726 Views
    Mischa MegensM

    @mkupper Disabling the touchpad fixed it :)
    Apologies for the red herring… :(

  • File extension List

    11
    0 Votes
    11 Posts
    864 Views
    Lycan ThropeL

    @PeterJones ,
    Bravo @PeterJones. Hope to get to that point, someday.
    :-)

  • Problem seeing some line numbers when Folding plain text

    12
    0 Votes
    12 Posts
    549 Views
    Frank WojtczakF

    @Lycan-Thrope said in [Problem seeing some line numbers when

    Take the sections one by one until you find the offending issue. It’s painstaking, but it’s about the only way to fix it with the tools we have available, being the UDL…when the other option is writing a full on lexer.

    Welcome to Notepad++ UDL creation. :-)

    I appreciate all the help that you, and all the other respondents have provided here. As much as I wish it was a simple solution, sometimes it’s not and you just have to slog through a problem to get a resolution. Either way, it’s good to have a place to be able to ask questions and get good help in return.

    Thanks to all of you for the good information! (and quick replies!)

  • Alt-Up/Down Arrow Line Movement

    9
    0 Votes
    9 Posts
    15k Views
    Alan KilbornA

    @Jay-Imerman said in Alt-Up/Down Arrow Line Movement:

    let me please second this request

    If this is truly a request, it’s in the wrong place.
    See HERE.

    But, I’d say…don’t bother making it an official request, as it is very likely to be denied. The author long ago created the ability to remap commands to different keycombos, so users should avail themselves of that.

  • How could I move the txts in the document list?

    4
    0 Votes
    4 Posts
    342 Views
    e-motivE

    Existing feature request right here -> github issue 2221

    Also, although this is not drag and drop the document list follows the tab bar and even if the tab bar is hidden you can still use the shortcuts from the tab bar to position files in the document list (down, up, start, end, …) (CTRL-SHIFT_PD, …)

  • 2 Votes
    4 Posts
    3k Views
    e-motivE

    Existing feature request right here -> github issue 2221

    Also, although this is not drag and drop the document list follows the tab bar and even if the tab bar is hidden you can still use the shortcuts from the tab bar to position files in the document list (down, up, start, end, …) (CTRL-SHIFT_PD, …)

  • Drag to reorder documents in Documet List?

    9
    0 Votes
    9 Posts
    1k Views
    e-motivE

    Existing feature request right here -> github issue 2221

    Also, like said above, although this is not drag and drop the document list follows the tab bar and even if the tab bar is hidden you can still use the shortcuts from the tab bar to position files in the document list (down, up, start, end, …) (CTRL-SHIFT_PD, …)

  • Docker use of Notepad++

    2
    0 Votes
    2 Posts
    365 Views
    Lycan ThropeL

    @Shaun-Merrill ,
    Notepad++ doesn’t have a license, per se. It’s freeware…so what are you going on about?

  • Toolbar spacing has changed in latest version?

    3
    0 Votes
    3 Posts
    241 Views
    VTGroupGitHubV

    @PeterJones You answer was 100% correct. Thank you! I do use Customize Toolbar, and by simply removing the Show All Characters button, my previous layout has returned.

    When I have a minute, I’ll put it back with a custom icon. Thanks for that suggestion too.

  • Can folding rules be applied to Normal Text?

    2
    0 Votes
    2 Posts
    197 Views
    PeterJonesP

    @MMasutin ,

    Normal Text has no folding rules available. You would need to use a lexer of some sort, whether a builtin or a UDL.

    A UDL is “closest” to Normal Text, in that it won’t highlight any text unless you explicitly tell it what to highlight. So then you could just define a FoldingUDL with Folding rules (no styles applied to the folding keywords), and no other keywords defined, and it would be essentially Normal Text + Folding.

  • Separate Question and Answer about 1000 topics

    8
    0 Votes
    8 Posts
    543 Views
    Mark OlsonM

    Here’s my PythonScript script, which can output a CSV or TSV file while ensuring that each row has the right number of columns and any instances of the column separator inside a column are handled correctly.

    ''' ====== SOURCE ====== Requires PythonScript (https://github.com/bruderstein/PythonScript/releases) Based on this question: https://community.notepad-plus-plus.org/topic/25962/separate-question-and-answer-about-1000-topics ====== DESCRIPTION ====== Converts a list of questions in the following format into a RFC-4180 compliant CSV file (in other words, a CSV file that is designed to be easy for lots of applications to read) ====== EXAMPLE ====== Assume that you have the text below (between the ------------ lines): ------------ 1.1.1 This is question number 1? "This is answer" 1 with option 1 This, is answer 1, with option 2 1.1.2 This is question number 2? This is answer 2, with "option 1" This is answer 2 with option 2 This is answer 2 with option 3 1.1.3 This is question "number 3"? This is answer 3 with option 1 1.1.4 This is question, number 4? This is answer 4 with option 1 This is answer 4, with option 2 This is answer 4 with "option" 3 This is answer 4 with option 4 ------------ This script will output the following CSV file (between the ------------ lines) ------------ question,option 1,option 2,option 3,option 4 1.1.1 This is question number 1?,"""This is answer"" 1 with option 1","This, is answer 1, with option 2",, 1.1.2 This is question number 2?,"This is answer 2, with ""option 1""",This is answer 2 with option 2,This is answer 2 with option 3, "1.1.3 This is question ""number 3""?",This is answer 3 with option 1,,, "1.1.4 This is question, number 4?",This is answer 4 with option 1,"This is answer 4, with option 2","This is answer 4 with ""option"" 3",This is answer 4 with option 4 ------------ ''' from Npp import editor, notepad import json def convert_q_list_to_csv_main(): # this is set to ',' to make a CSV file. # you could instead use '\t' if you wanted a TSV (tab-separated variables) file SEP = ',' question_lines = [] def to_RFC_4180(s: str, sep: str) -> str: if '"' in s or sep in s or '\r' in s or '\n' in s: return '"' + s.replace('"', '""') + '"' return s editor.research(r"((?'question'^\d+\.\d+\.\d+ +(.*\?)$))(?:\R(?!(?&question)).*)+", lambda m: question_lines.append(m.group(0).splitlines())) print(json.dumps(question_lines, indent=4)) max_n_options = max(len(x) for x in question_lines) header_text = 'question' + SEP + SEP.join('option %d' % ii for ii in range(1, max_n_options)) out_line_texts = [header_text] for question in question_lines: RFC_4180_texts = [] for ii in range(max_n_options): if ii >= len(question): RFC_4180_texts.append('') else: RFC_4180_texts.append(to_RFC_4180(question[ii], SEP)) out_line_texts.append(SEP.join(RFC_4180_texts)) notepad.new() editor.setText('\r\n'.join(out_line_texts)) if __name__ == '__main__': convert_q_list_to_csv_main() del convert_q_list_to_csv_main

    Before you ask, I made the odd programmatic choice to define helper functions and global constants inside the main function to avoid polluting the global PythonScript namespace.

  • 0 Votes
    3 Posts
    383 Views
    Alan KilbornA

    @PeterJones said in Curiosity: what apps / services were-built-on / are-currently-maintained-with Notepad++?:

    the most important piece of software to be built/maintained (ie, typed) with Notepad++ is of course Notepad++.

    And I’m not sure this is even true. :-)
    At least when I’m doing development with Notepad++ source code, I use the Visual Studio editor/IDE, not Notepad++.
    Not sure what others do (but I would suspect the same).

  • page breaks

    4
    0 Votes
    4 Posts
    323 Views
    PeterJonesP

    @Mark-Olson said in page breaks:

    you can type &#x0c; and thus insert the character without needing to use a GUI

    If you have to try to remember that, why not instead remember Alt+012 (on numeric keypad) which has worked in any Windows application for literally decades, and requires no plugins?

  • imagecreatefrombmp not recognised

    3
    0 Votes
    3 Posts
    216 Views
    Dion FitzgeraldD

    @PeterJones said in imagecreatefrombmp not recognised:

    @Dion-Fitzgerald ,

    Please, can this be fixed in future releases.

    This Forum is not the feature request location, as explained in our FAQ. Even if you went to github and made a feature request, I am doubtful that anyone would bother to do a PR for a single keyword – but if you found a list of keywords that were missing, someone might be more likely to bother.

    However, if it’s important to you to get it highlighted right away, go to Settings > Style Configurator > Language: php > Style: WORD and add imagecreatefrombmp to the User-defined keywords box, then Save & Close, and it will be highlighted for you on that computer, from then on. (The reason Notepad++ has the user-defined keywords option for most languages is that it is impossible for one volunteer developer to know all 80+ languages well enough to know if there’s a few missing keywords or not, and on any language, there maybe any number of lesser-used keywords that would only be important to a subset of users – so the user-defined keyword box is there for the users who care about those holes or want those extra keywords to add them themselves. PHP already has >9000 keywords in Notepad++, so it’s not surprising there is at least one, and likely more, missing – even if there were 100 missing that would only be 1% of the total, which isn’t hugely significant.)

    thanks

  • Since which version did this appear?

    2
    0 Votes
    2 Posts
    226 Views
  • Manual-Indent v Auto-Indent v Smart-Indent

    11
    0 Votes
    11 Posts
    1k Views
    Alan KilbornA

    @Coises said in Manual-Indent v Auto-Indent v Smart-Indent:

    Not too often mixed within the same file, but from one file to the next, certainly. If it were a menu-accessible, per-tab setting, that wouldn’t be so bad.

    There was a proposal recently on the github issues site concerning having the indent settings for the current file shown on the status bar, with the ability to click on it and adjust the settings for the current tab. Of course I can’t find this now; it may have been part of the discussion in the comments of the issue that is bringing us a three-pronged auto-indent setting.