• Notepad++ v8.3.2 release - Declare variables, not war

    Locked
    42
    9 Votes
    42 Posts
    13k Views
    Vitalii DovganV

    @vitalii-dovgan said in Notepad++ v8.3.2 release - Declare variables, not war:

    Hmm, I tried to reproduce it today with different scenarios - and could not. Though it was stably reproducible yesterday.

    Now I’m having a strong confidence that the issue was connected to improper invocation of Notepad++ from my side. Sorry for the previous misleading.

    Anyway, as the result I’ve created a batch script that can be used to add a context menu item “Edit with Notepad++” for a single file and “Open in Notepad++” for a folder, using either a portable or an installed version of Notepad++. If interested, you can place this file directly into the Notepad++ folder and run it there.

    The content of “npp_context_menu.cmd” :

    @echo off echo Initialization... set EXEDIR=%~dp0 set "EXE=%EXEDIR:\=\\%notepad++.exe" set REGFILE=npp_context_menu.reg if exist "%REGFILE%" del "%REGFILE%" echo Writing "%REGFILE%"... 1>>"%REGFILE%" echo Windows Registry Editor Version 5.00 1>>"%REGFILE%" echo. 1>>"%REGFILE%" echo [HKEY_CLASSES_ROOT\*\shell] 1>>"%REGFILE%" echo. 1>>"%REGFILE%" echo [HKEY_CLASSES_ROOT\*\shell\notepadpp_edit_file] 1>>"%REGFILE%" echo @="Edit with &Notepad++" 1>>"%REGFILE%" echo "Icon"="\"%EXE%\",0" 1>>"%REGFILE%" echo. 1>>"%REGFILE%" echo [HKEY_CLASSES_ROOT\*\shell\notepadpp_edit_file\command] 1>>"%REGFILE%" echo @="\"%EXE%\" -nosession \"%%1\"" 1>>"%REGFILE%" echo. 1>>"%REGFILE%" echo [HKEY_CLASSES_ROOT\Directory\shell] 1>>"%REGFILE%" echo. 1>>"%REGFILE%" echo [HKEY_CLASSES_ROOT\Directory\shell\notepadpp_edit_folder] 1>>"%REGFILE%" echo @="Open in &Notepad++" 1>>"%REGFILE%" echo "Icon"="\"%EXE%\",0" 1>>"%REGFILE%" echo. 1>>"%REGFILE%" echo [HKEY_CLASSES_ROOT\Directory\shell\notepadpp_edit_folder\command] 1>>"%REGFILE%" echo @="\"%EXE%\" -multiInst -nosession -openFoldersAsWorkspace \"%%1\"" 1>>"%REGFILE%" echo. REM Converting to UCS-2 LE (not mandatory) if exist "%~dp0..\sfk\sfk.exe" set PATH=%PATH%;%~dp0..\sfk sfk atow "%REGFILE%" -tofile "%REGFILE%" if not exist "%REGFILE%" goto ErrorNoRegFile echo Registering "%REGFILE%"... start "Registering %REGFILE%" "%REGFILE%" goto Done :ErrorNoRegFile echo ERROR: "%REGFILE%" does not exist! pause goto Done :Done

    This invokes Notepad++ using its -nosession command line argument to not affect the opened file history (this is especially useful when opening a folder).

  • Notepad++ v8.4 Release Candidate 2

    Locked
    1
    3 Votes
    1 Posts
    751 Views
    No one has replied
  • Make Apps, not war - Notepad++ v8.3.3 released

    Locked
    37
    8 Votes
    37 Posts
    12k Views
    Marjan SavliM

    Cursor movement not visible while I am holding Right or Left arrow key

    I had 32 bit version.
    Installed ver 8.3.3 64 bit.

    Now I can not see cursor movement while I am holding Right or Left arrow key (opened 8Mb XML file https://github.com/msavli/SloKJV/blob/master/SloKJV_sword.xml).
    So I can not see my cursor position. But between holding Right or Left arrow key some cursor occurrences can be visible for a very short moment.

    If I uninstalled XML Tools plugin 3.1.1.12 it is much better. Cursor is again visible when holding Right or Left arrow key. But cursor is not visible at all in a first 5 lines between holding Right or Left arrow key.

    In 32 bit version I also had installed XML Tools.
    Microsoft Windows [Version 10.0.19044.1586]

  • Welcome to Notepad++ Community!

    52
    9 Votes
    52 Posts
    110k Views
    ?

    @donho

    NodeBB 😎
    Notepad++ 😎

  • Notepad++ v8.3.3 Release Candidate

    Locked
    4
  • Notepad++ v8.3 release

    Locked
    56
    7 Votes
    56 Posts
    18k Views
    PeterJonesP

    @albrecht-hilker said in Notepad++ v8.3 release:

    So why dont you release it marked as a beta version ?

    Because this is the sequence that the developer usually follows:

    Develop updates Submit as Release Candidate (RC) version Wait for feedback from those users who are willing to download a RC version Iterate 1-2 until no “critical regressions” are reported Release as official version Wait for feedback from those users who are willing to download the released version without waiting for auto-update to be triggered (much larger number of people) Do a faster loop back to step 1 if critical regressions found after #4 If no critical regressions found in #5, then trigger auto-update

    The goal is for critical regressions to be found in #2 (the equivalent of “beta”), but not enough users download the RC/beta versions, so sometimes critical regressions are not found until #5. This happened to be one of those cases. Since the developer likes a fast-paced release cycle anyway, he feels that the current process works reasonably well – and the delay between #4 and #7 prevents “too many” people from downloading the release if a critical regression is found within a week or two of release.

  • Notepad++ v8.3.1 release

    Locked
    33
    7 Votes
    33 Posts
    10k Views
    Alan KilbornA

    @donho

    I don’t find what I said uncordial.
    What is being asked for IS dumb, especially given the high number of regressions in Notepad++ new releases over the last so many months.
    I wouldn’t be surprised if the poster did go there and read it, and realize, “Yes, what I asked for truly is dumb”. It really doesn’t have to do with being asked repeatedly.

  • Notepad++ v8.3.2 Release Candidate

    Locked
    8
    7 Votes
    8 Posts
    1k Views
    PeterJonesP

    @xomx ,

    I tried it once I got home: yes, it’s working correctly now: the Comment definition correctly displays, and if I make a change in one of the other boxes and exit, they all get saved, and the Comment definition stays intact.

    Thanks for the fix!

  • Notepad++ v8.3.1 Release Candidate

    Locked
    5
    5 Votes
    5 Posts
    928 Views
    donhoD

    @michael-vincent said in Notepad++ v8.3.1 Release Candidate:

    I suspect if you use the installer it will work. Otherwise, you’ll need to go into the settings and change it manually like we did in this version.

    Use installer to upgrade old version of Notepad++ won’t make the set value restored to default value, because config.xml won’t be erased by Installer. Change this option manually via Preference dialog is the only way to (re)set this value.

  • Notepad++ v8.2.1 Release

    Locked
    40
    2 Votes
    40 Posts
    11k Views
    mathlete2M

    @peterjones said in Notepad++ v8.2.1 Release:

    Why are you still fighting this semantic argument?

    I wasn’t, I was explaining why I was using a term that wasn’t explicitly used in the doc. You didn’t seem to understand why I was using the term “default” (which made sense because the doc excerpts that I was referencing didn’t use it), so I gave an explanation of why it was still an appropriate term to use in this context.

  • Notepad++ v8.2.2 Release Candidate 5

    Locked
    10
    6 Votes
    10 Posts
    1k Views
    donhoD

    @graham-norris

    Maybe the time has come for a reset of plugin compatibility, with a revised set of standards which Notepad++ and plugins need to adhere to.

    IMO, the management of plugin compatibility is for plugins which cannot run previous certain versions, for example a plugin cannot be loaded/run under v7.8.4 and the previous versions because the API used by the plugin in question was introduced from v7.8.5.

    In our actual situation, I don’t see how the plugin compatibility management can help, since the plugins are supposed to work in current version of Notepad++ and its future versions.

  • Notepad++ v8.2.2 Release Candidate 4

    Locked
    4
    7 Votes
    4 Posts
    763 Views
    donhoD

    @arkadiuszmichalski
    Thank you for testing plugins.
    x64 installer package in RC5 has excluded DSpellCheck, Compare & HexEditor.

  • Notepad++ v8.2.2 Release Candidate 3

    Locked
    6
    4 Votes
    6 Posts
    658 Views
    donhoD

    @yaron

    Fixed! Thank you for the report!

    @Ekopalypse

    Please let me know if this RC has solved your problem:
    https://community.notepad-plus-plus.org/topic/22456/notepad-v8-2-2-release-candidate-4

  • Notepad++ v8.2.2 Release Candidate 2

    Locked
    7
    5 Votes
    7 Posts
    851 Views
    donhoD

    @ekopalypse
    In 8.2.2 RC3 the edit performance issue should be improved. Please try here:
    https://community.notepad-plus-plus.org/topic/22451/notepad-v8-2-2-release-candidate-3

  • Notepad++ v8.2.2 Release Candidate

    Locked
    9
    5 Votes
    9 Posts
    1k Views
    donhoD

    Thank you guys for your tests and suggestions.

    @xomx

    Regarding your suggestion, here is RC2 with some enhancement:
    https://community.notepad-plus-plus.org/topic/22446/notepad-v8-2-2-release-candidate-2

  • Notepad++ 8.2.1 Release Candidate

    Locked
    8
    5 Votes
    8 Posts
    1k Views
    Artur HarisonA

    @donho
    No! If you turn off the dark theme, the problem disappears.
    May be problen in 125% scaling in windows setings?

  • Notepad++ v8.2 Release

    Locked
    20
    5 Votes
    20 Posts
    18k Views
    Lycan ThropeL

    @donho ,
    Thank you, I stand corrected. :)

    Lee

  • Notepad++ v8.1.9.3 Release

    Locked
    4
    4 Votes
    4 Posts
    6k Views
    Lion BryceL

    Dark Mode Bug: You cannot tell what you have highlighted in the Search Results window. This appears to be because the whole line gets highlighted as the same color as the “I clicked and dragged my mouse to select 1 word from this line” color

  • Notepad++ 8.2 Release Candidate

    Locked
    2
    3 Votes
    2 Posts
    447 Views
    cmeriauxC

    Add exclude folder(s) capacity in Find in File

    This is a very cool feature !!! thanks @donho

  • Notepad++ community on nodebb.org

    31
    6 Votes
    31 Posts
    5k Views
    donhoD

    @jay-libove @freonsandoz

    Why do you need to verify your email address?