• Windows protected your PC - SmartScreen blocks installer

    3
    0 Votes
    3 Posts
    7k Views
    Christian RiiserC

    Just came to say that signed exe’s would be something that our company would PAY for.

    Please consider this…

    /Christian

  • Deleting in column mode doesn't work as expected

    3
    0 Votes
    3 Posts
    3k Views
    Albert BihlerA

    Hi,

    thank you for the hint. It turned out that visimulator.dll in my plugins folder messed things up. Without that plugin column mode works again as expected.

    Regards,
    Albert

  • BUG Windows 10 multiple desktop integration

    2
    0 Votes
    2 Posts
    5k Views
    Harm WibierH

    Go to “Settings > Preferences > Multi-instance” and select “Always run in multi-instance mode”. After doing that you’ll be able to run a separate instance on each desktop.

  • Making Spell Check The Foundation of ++

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Jan SchreiberJ

    Paul, thanks for your feedback, much appreciated. I agree with you that the DSpellCheck plugin by Sergey Semushin is one of the most important plugins for many users. It doesn’t ship with the Notepad++ distribution atm because it causes the application to hang on newer versions of Windows. The plugin will be back as soon as that issue gets sorted out.

  • Notepad++ and Linux EOT on existing files - driving me nuts

    Locked
    2
    0 Votes
    2 Posts
    4k Views
    Jan SchreiberJ

    If your local computer is running Windows and the remote system is running Linux, you’ll probably want to change the way WinSCP handles plain text files. By default, WinSCP converts line endings between systems so on each machine the file is stored with the machine’s system default settings.
    I suggest that in WinSCP, you go to Preferences/Transfer/Presets, double-click on “Text”, and change “Transfer Mode” from “Text” to “Binary”. This should do the trick as long as you don’t save with Windows line endings locally by accident.

  • Possible bug found when processing nested parentheses in a batch script

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Josiah DealJ

    Sure,

    setlocal ENABLEDELAYEDEXPANSION
    echo ┌╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨╨┐>> SyncLog.log
    echo │ SYNC STARTED: %DATE% at %TIME% │>> SyncLog.log
    echo ├─────────────────────────────────────────────┘>> SyncLog.log
    for /F “skip=5 tokens=" %%A in (SyncConfig.txt) do (
    for /F "tokens=3 delims= ,=, " %%B in (‘echo %%A^| findstr /i /c:“Source Drive”’) do (set SourceDrive=%%B)
    )
    for /F "tokens=6-10 delims= " %%A in (‘dir !SourceDrive!^| findstr /i Volume^| findstr /v Serial’) do (
    set SourceDriveName=%%A %%B %%C %%D %%E
    echo │ The source drive is set to !SourceDrive! ^(!SourceDriveName!^)>> SyncLog.log
    )
    for /F "skip=9 tokens=” %%A in (SyncConfig.txt) do (
    for /F %%B in (‘echo %%A^| findstr /i /v /c:“Not Included”’) do (
    if NOT EXIST %%B:\ (
    call :GetTime
    echo │ !CurrentTime! %%B:\ does not exist and was not synced>> SyncLog.log
    )
    if EXIST %%B:\ (
    set NetworkDrive=FALSE
    for /F “skip=5 tokens=2 delims= " %%C in (‘net use^| findstr /v command’) do (if “%%B:”==”%%C" (set NetworkDrive=TRUE))
    if !NetworkDrive!==TRUE (
    call :GetTime
    echo ├ !CurrentTime! %%B:\ is a network drive and was not synced>> SyncLog.log
    )
    if !NetworkDrive!==FALSE (
    title SYNCING !SourceDrive! TO %%B:
    robocopy /MIR !SourceDrive! %%B:
    title SYNC IS COMPLETE
    if %ERRORLEVEL% GEQ 8 (
    call :GetTime
    echo █►!CurrentTime! An error occured when robocopy attempted to sync from !SourceDrive! to %%B:>> SyncLog.log
    )
    if %ERRORLEVEL% LSS 8 (
    for /F "tokens=6-10 delims= " %%C in (‘dir %%B:^| findstr /i Volume^| findstr /i /v Serial’) do (
    call :GetTime
    echo ├►!CurrentTime! %%B:\ ^(%%C %%D %%E %%F %%G^) was successfully synced with !SourceDrive! ^(!SourceDriveName!^)>> SyncLog.log
    )
    )
    )
    )
    )
    )
    endlocal
    echo ├─────────────────────────────────────────────┐>> SyncLog.log
    echo │ SYNC ENDED: %DATE% at %TIME% │>> SyncLog.log
    echo └╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥╥┘>> SyncLog.log
    goto :eof
    :GetTime
    set CurrentTime=%TIME%
    goto :eof

  • Hide lines - how to show again?

    Locked
    3
    0 Votes
    3 Posts
    26k Views
    Scott SumnerS

    I find that if I hide a few lines, then hide a few more lines right below the previously hidden, restoring them to visibility on restores the second group. The first group remains hidden, with no little triangles in the margin to restore them.

  • Keep words and number with columns

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    guy038G

    Hello, Ferenc Nagy,

    Looking at your file, I noticed that the length of your <....> zones, included the brackets, are mostly 12 and sometimes 24, 36 or 48 characters long !

    So, assuming that you simply use the Normal text language for your data files, I would do this way :

    Open the Settings - Preferences… Tab Settings dialog

    Select the normal language

    UNCHECK the Use Default value option

    Type 12 in the Tab size option

    Leave the Replace by space option UNCHECKED

    Close the Preferences dialog

    Now, let’s suppose that you write the line, below ( it’s just an example, not related to yourexact file contents ! )

    <PREDICATE ><OBJECT ><EVA_TITLE ><DEVICE ><COMPLEMENT >

    and that you have to write, for each of these five columns, three letters, taken in the alphabetical list.

    To correctly write these data, according to the previous header line :

    Type the string abc and hit the TAB key, ONCE

    Type the string def and hit the TAB key, ONCE

    Type the string ghi and hit the TAB key TWICE

    Type the string jkl and hit the TAB key, ONCE

    Type the string mno and hit the TAB key, THREE times

    To better visualize the TAB characters, use the View - Show Symbol - Show All Characters option !

    IMPORTANT :

    When ALL your datas will be typed, in your file, according to the above scheme, use the Edit - Blank Operations - TAB to Space option to replace all the TAB characters by the suitable number of SPACE characters ( Thanks to Loreia2 ! )

    Et voilà ! From now on, your datas should be aligned, on column 1 , 13, 25, 37, … ( 12*n + 1 )

    Best Regards,

    guy038

  • Search for large numbers

    Locked
    5
    0 Votes
    5 Posts
    8k Views
    guy038G

    Hello, Eirik,

    If I suppose that :

    Any subset of three digits, except for the first one, of the numbers, in your dataset, can be preceded or NOT, by a comma,

    The space delimiter can be present or NOT, before the word patients, which can either be written in a singular mode,

    an other SEARCH regex expression could be : +\d+(,?\d{3})+ *patients?, with a space BEFORE the first + sign of that regex.

    With that regex, it would match all these following items :

    abc 1234 patients xyz abc 1,234 patients xyz abc patients xyz abc 12345 patients xyz abc 12,345 patients xyz abc patients xyz abc 123456 patients xyz abc 123,456 patients xyz abc patients xyz abc 1234567 patients xyz abc 1,234567 patients xyz abc 1234,567 patient xyz abc 1,234,567 patients xyz abc patients xyz abc 12345678 patients xyz abc 12,345678 patients xyz abc 12345,678 patients xyz abc 12,345,678 patients xyz abc patients xyz abc 123456789 patients xyz abc 123,456789 patient xyz abc 123456,789 patient xyz abc 123,456,789 patients xyz abc patients xyz abc 1234567890 patients xyz abc 1,234567890 patients xyz abc 1,234,567890 patient xyz abc 1,234567,890 patients xyz abc 1,234,567,890patient xyz abc 1234,567890 patients xyz abc 1234,567,890 patients xyz abc 1234567,890 patients xyz

    But, it would ignore all natural numbers, under 1000 and some odd syntaxes as 1,2,3 or ,1a,23, like below :

    abc 0 patient xyz abc 0, patient xyz abc 1 patient xyz abc 1, patient xyz abc 12 patients xyz abc 12, patients xyz abc 123 patients xyz abc 999 patients xyz abc 123, patients xyz abc ,123 patients xyz abc 1,2,3 patients xyz abc 12,34 patients xyz abc 12,3,4 patients xyz abc 123,4 patients xyz abc , patients xyz abc ,,,,,, patients xyz abc ,,4,,4,, patients xyz abc patients xyz abc ,1234 patients xyz abc ,1,234 patients xyz abc 123a456b789 patients xyz

    Best Regards,

    guy038

  • New text file choice missing from right-click New.. menu

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • File overwrite confirmation

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Peter GibbP

    Yes, I do, sorry for the late reply, but I haven’t been able to get in here.

    Its not a problem, but I quite like to know when things are being overwritten, as sometimes I slip up.

    Thanks for your response

    Peter

  • Feature Request:

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Get file source from internet?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    David CollantesD

    @Leah-Talley I believe you need to get the source manually.

  • Right click not working after find in files

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • config.model.xml Deployment issues

    Locked
    2
    0 Votes
    2 Posts
    4k Views
    GS InstituteG

    Update: after further testing I have found the issue was caused by another unrelated process that was transferring an existing %appdata%\notepad++\ profile and so the config.model.xml was not being used used to generate a new profile.

    Resolution: By manually removing the %appdata%\notepad++\ profile and then opening notepad++ the config.model.xml worked as expected and the updated settings were create the %appdata%\notepad++\config.xml.

  • Notepad txt looks different in Notepad++

    Locked
    3
    0 Votes
    3 Posts
    5k Views
    Jan SchreiberJ

    The safest way to make this work (regardless of tab settings that are handled inconsistently across different applications) is to use spaces rather than tabs.

  • File associations show random items

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Spell check not working?

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • How to add a new command in Run menu

    Locked
    3
    0 Votes
    3 Posts
    9k Views
    ajovalionA

    yes we have to update the ( %APPDATA%\Notepad++ ) and earlier i tried from Notepad++ editor itself, now when i tried from another editor, it did reflect the modifcations.

    thanks for the help, dail

  • Pasting into replace field has stopped working

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    - Voigtman-

    It seems to only happen on documents that have a CRLF character