• Compare 2 folders

    3
    0 Votes
    3 Posts
    17k Views
    Alan KilbornA

    @musicscoree96 said in Compare 2 folders:

    as for now I used UltraCompare

    So why stop using it, even if a Notepad++ plugin gives you compare capability?

    No offense to the developers of the Compare plugin, but I don’t like it much, so I continue to use BeyondCompare. I do my own “integration” with it using some Notepad++ scripts.

  • Default Dictionary

    11
    0 Votes
    11 Posts
    640 Views
    Alan KilbornA

    @Swati-Rohatgi said in Default Dictionary:

    It is enhancement request

    And it was officially made HERE.
    But…I don’t think what you want was made very clear there. Perhaps you want to clarify by writing more there, or at the very least linking back here to this discussion.

  • notepad ++ problem

    2
    0 Votes
    2 Posts
    214 Views
    Terry RT

    @damdini-RANAWEERA said in notepad ++ problem:

    my note pad++ is not working when I view it on another web page as below.

    The solution is that you need to write a html file, not a txt file.

    By the way, this is a free answer, but if you ask anymore html coding questions no-one will help. This is not a Notepad++ issue, it’s a html coding issue so ask these questions in a different forum please.

    Terry

  • problem printing a selected part of a file

    11
    0 Votes
    11 Posts
    2k Views
    donhoD

    @rdipardo @PeterJones

    I’ve applied Scintilla fix here:
    https://github.com/notepad-plus-plus/notepad-plus-plus/pull/11911

    But I still can reproduce the bug.
    Obviously, the bug is not fixed by this commit :(

  • 0 Votes
    14 Posts
    861 Views
    VTGroupGitHubV

    This did work. Thank you again.

    In case anyone else is interested, I added the following to “C:\Program Files\Notepad++\plugins\PythonScript\scripts\startup.py”:

    def setTabs(arg): editor.setTabIndents(False) notepad.callback(setTabs, [NOTIFICATION.BUFFERACTIVATED])
  • Apply XSL to view XML file

    4
    0 Votes
    4 Posts
    13k Views
    Kim ClausingK

    I was able to use ther xml tools plug in for notepadd ++. I renamed my xslt to xsl. I opened my xml file that I want to transform. I selected the plugin menu. Then selected xml tools - xsl transformation. In the child window that appears, I select my renamed xsl file.

  • Search Window Double Click Function

    2
    1 Votes
    2 Posts
    258 Views
    PeterJonesP

    @Win-Custom ,

    This sounds like the known issue here (@Yaron can correct me if I’m wrong). If so, it will be fixed in the next revision of Notepad++.

  • Replace extended mode search function

    2
    0 Votes
    2 Posts
    425 Views
    guy038G

    Hello, @mar-hyg,

    Your post does not seem very clear regarding your goals ! I advice you to read these two posts, below, before replying again !

    https://community.notepad-plus-plus.org/topic/21965/please-read-this-before-posting

    https://community.notepad-plus-plus.org/topic/22022/faq-desk-template-for-search-replace-questions

    We certainly can help you, but we need further explanations to think about !

    Thanks for reading. See you later !

    guy038

  • Toggle Markdown Viewer++ plugin on startup

    7
    0 Votes
    7 Posts
    703 Views
    BlitzCoderB

    @rdipardo Yes, I’m also using the portable version.

    Noted on that, will look into this more. Thanks again for the add. info.

  • Printout with marking

    2
    0 Votes
    2 Posts
    237 Views
    PeterJonesP

    @Hans-Jürgen-L ,

    That issue is being addressed in the official issue tracker.

  • Can't update from the program anymore

    2
    0 Votes
    2 Posts
    200 Views
    PeterJonesP

    @Brian-Owens said in Can't update from the program anymore:

    why is this

    It’s explained in the user manual.

    https://npp-user-manual.org/docs/upgrading/

  • help for quotes please

    4
    0 Votes
    4 Posts
    266 Views
    guy038G

    Hello, @bastien-allouard, @peterjones and All,

    I’ve got a solution which needs the installation of the excellent BetterMultiSelection plugin, from @dail ! So :

    Open the menu option Plugins > Plugins Admin...

    Select the BetterMultiSelection plugin

    Click on the Install button

    Click on the Close button

    For security, close and restart Notepad++

    Now, assuming that you have this INPUT text :

    Hyping "Hyping" Fulfillingcontract "Fulfilling contract" Time-limit "Time-limit" Requiredquality "Required quality" Upfront "Upfront" Whendone "When done" Penalty "Penalty" Costperbug "Cost per bug" Bugpenalty "Bug penalty" Latepenalty "Late penalty" Qualitypenalty "Quality penalty" Cancelpenalty "Cancel penalty" Netprofit "Net profit" Delivered "Delivered" Maxbandwidth "Max bandwidth" Lookagain "Look again" LookAgainPrompt "Are you sure you want to look again? It will cost {0}" Hyping "Popularité" Fulfillingcontract "Contrat rempli" Time-limit "Limite de temps" Requiredquality "Qualité requise" Upfront "Avance" Whendone "A la livraison" Penalty "Penalté" Costperbug "Coût par bug" Bugpenalty "Pénalité des bugs" Latepenalty "Pénalité de retard" Qualitypenalty "Pénalité de Qualité" Cancelpenalty "Pénalité d'annulation" Netprofit "Profit net" Delivered "Livré" Maxbandwidth "Bande passante Max" Lookagain "Actualiser" LookAgainPrompt "Êtes-vous sûr de vouloir actualiser ? Cela vous coûtera {0}"

    First, let’s change any tab char by the corresponding space chars with the menu option Edit > Blank Operations > TAB to Space

    Select all the lines, English and French

    Open the Replace dialog ( Ctrl + H )

    SEARCH (?-s)^(\h*).+?"

    REPLACE \1"

    Tick the Wrap around and In selection options

    Select the Regular expression search mode

    Click on the Replace All button

    You should obtain the OUTPUT text below :

    "Hyping" "Fulfilling contract" "Time-limit" "Required quality" "Upfront" "When done" "Penalty" "Cost per bug" "Bug penalty" "Late penalty" "Quality penalty" "Cancel penalty" "Net profit" "Delivered" "Max bandwidth" "Look again" "Are you sure you want to look again? It will cost {0}" "Popularité" "Contrat rempli" "Limite de temps" "Qualité requise" "Avance" "A la livraison" "Penalté" "Coût par bug" "Pénalité des bugs" "Pénalité de retard" "Pénalité de Qualité" "Pénalité d'annulation" "Profit net" "Livré" "Bande passante Max" "Actualiser" "Êtes-vous sûr de vouloir actualiser ? Cela vous coûtera {0}"

    Enable, if necessary, the BetterMultiSelection plugin

    Do a zero-length rectangular selection of all the lines ( Hit, simultaneously the Alt and Shift keys and press the Down key, several times )

    Release all the keys, then hit the End ( or Fin ) key

    => All the cursors should be at the end of lines

    Hit the Enter key to insert blank lines, in between

    Hit the Backspace key to delete the tabulations ( IMPORTANT )

    Hit the Esc key to disable your rectangular selection

    You’ll get this OUTPUT :

    "Hyping" "Fulfilling contract" "Time-limit" "Required quality" "Upfront" "When done" "Penalty" "Cost per bug" "Bug penalty" "Late penalty" "Quality penalty" "Cancel penalty" "Net profit" "Delivered" "Max bandwidth" "Look again" "Are you sure you want to look again? It will cost {0}" "Popularité" "Contrat rempli" "Limite de temps" "Qualité requise" "Avance" "A la livraison" "Penalté" "Coût par bug" "Pénalité des bugs" "Pénalité de retard" "Pénalité de Qualité" "Pénalité d'annulation" "Profit net" "Livré" "Bande passante Max" "Actualiser" "Êtes-vous sûr de vouloir actualiser ? Cela vous coûtera {0}"

    Now, redo a zero lengh rectangular selection of the french lines only, including the blank ones

    While keeping pressed the Alt and Shift keys, hit the End ( or Fin ) key to include all text

    Press the Ctrl + X shortcut, to move that text in the clipboard

    Hit the Esc key to disable the rectangular selection

    Now, move the caret at the very beginning of the first blank line, under the line "Hyping"

    Hit the Ctrl + V shortcut

    => Wow ! you should get this OUTPUT text, below :

    "Hyping" "Popularité" "Fulfilling contract" "Contrat rempli" "Time-limit" "Limite de temps" "Required quality" "Qualité requise" "Upfront" "Avance" "When done" "A la livraison" "Penalty" "Penalté" "Cost per bug" "Coût par bug" "Bug penalty" "Pénalité des bugs" "Late penalty" "Pénalité de retard" "Quality penalty" "Pénalité de Qualité" "Cancel penalty" "Pénalité d'annulation" "Net profit" "Profit net" "Delivered" "Livré" "Max bandwidth" "Bande passante Max" "Look again" "Actualiser" "Are you sure you want to look again? It will cost {0}" "Êtes-vous sûr de vouloir actualiser ? Cela vous coûtera {0}"

    Finally, do the last regex S/R, below :

    SEARCH (?-s)^(\h*)"(.+)"\R\h*(.+)

    REPLACE \1\2\x20\3

    This regex selects two lines and rewrites all chars of the first line, but the double quote chars. Then, changes the EOL, between the two lines, with a space char and, finally, rewrites the contents of the second line

    So, you should get your expected OUTPUT text :

    Hyping "Popularité" Fulfilling contract "Contrat rempli" Time-limit "Limite de temps" Required quality "Qualité requise" Upfront "Avance" When done "A la livraison" Penalty "Penalté" Cost per bug "Coût par bug" Bug penalty "Pénalité des bugs" Late penalty "Pénalité de retard" Quality penalty "Pénalité de Qualité" Cancel penalty "Pénalité d'annulation" Net profit "Profit net" Delivered "Livré" Max bandwidth "Bande passante Max" Look again "Actualiser" Are you sure you want to look again? It will cost {0} "Êtes-vous sûr de vouloir actualiser ? Cela vous coûtera {0}"

    Best Regards,

    guy038

  • Copy and paste between two files

    7
    0 Votes
    7 Posts
    2k Views
    Martin SteinerM

    @PeterJones
    OK, I’ll try it. Thank you.

  • Ersetzen mit Wildcard, wie?

    3
    0 Votes
    3 Posts
    2k Views
    Alan KilbornA

    @Bernd-Gebhardt

    Maybe try:

    Find: width=“800” hight=“\d{3,4}” border=“0”
    Replace: width=“80%” border=“0”
    Search mode: Regular expression

    Note: Because you didn’t follow the RULES for posting such a question, I don’t know what “kind” of double-quotes you have, so you may have to adjust that.

  • PythonScript to replace TextFX Rewrap function?

    19
    0 Votes
    19 Posts
    2k Views
    Reiner BühlR

    @Ekopalypse Yes, this version seems to work fine! Many thanks!

  • Associate or open workspace files

    4
    0 Votes
    4 Posts
    1k Views
    BlitzCoderB

    Thanks guys, will look into this config.xml file format more.

  • New shortcuts of document management not displaying correctly

    10
    0 Votes
    10 Posts
    686 Views
    Zyggy StardustZ

    @PeterJones

    OK, did as you suggested but that was a no go. Enabling or disabling Direct Write did not made a difference.

    Anyway, thanks 4 you suggestion…

  • How to achieve that compare layout please?

    9
    0 Votes
    9 Posts
    2k Views
    Francois BlaisF

    Wow, HxD is exactly the tool for hex files comparison I needed, thanks much!

    François

  • Is there any way to disable Full Screen?

    3
    0 Votes
    3 Posts
    2k Views
    James TrentonJ

    @PeterJones

    Thank you!!! It works. I have been wondering that for many months now. I appreciate your help.

  • VDHL Block comment adding incorrect delimiter

    4
    0 Votes
    4 Posts
    2k Views
    PeterJonesP

    @Mike-Tyson said in VDHL Block comment adding incorrect delimiter:

    should, as OP is suggesting, revert to block-commenting with “–” on every line, as this is backward compatible

    I maintain that it is already configurable, and my post from a year ago already explained how to configure it. If this is not sufficient for your needs, you are free to put in a feature request (as explained in this FAQ), as we can do nothing about changing the codebase in this Community of fellow users of Notepad++