• 0 Votes
    3 Posts
    3k Views
    dreamforceincD

    Сохраняй в UTF-8 без BOM.

  • Find and replace

    Locked
    8
    0 Votes
    8 Posts
    2k Views
    Léo CostaL

    this was so great. tks guy038,

  • Admin on this forum.

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Why doesn't include zen coding plugin in notepad++ at built in?

    Locked
    1
    -1 Votes
    1 Posts
    666 Views
    No one has replied
  • Navigate buttons on toolbar

    Locked
    3
    1 Votes
    3 Posts
    1k Views
    Paddy GraceP

    Thanks. Location Navigate plugin does the job very well.

  • Every since last patch, extreme slowness and Not Responding...

    Locked
    12
    1 Votes
    12 Posts
    13k Views
    Claudia FrankC

    Satrting with npp 7.5.2 DSpellCheck Plugin has been included so it might be
    that your previous npp did have a different version of the plugin installed
    and maybe the newer version does have an issue under some special configuration.

    A general issue doesn’t seem to be the case otherwise I should have discovered the
    same behavior when testing it and I use the same version as you do, 1.3.5.

    I guess it would best if you report this to @Predelnik (author of DSpellCheck plugin) per github issue

    Cheers
    Claudia

  • Quick Bug report: prompt to reload changed file can cause a hang

    Locked
    2
    0 Votes
    2 Posts
    911 Views
    Claudia FrankC

    @SteveRawlinson

    seems to work for me.
    Changed file outside, switched back to npp, dialog pops-up, made another change, closed the file.
    Confirmed the pop-up dialog and saw correct file content.
    May I ask you which npp version you use ( ? menu->debug-info) ?

    Cheers
    Claudia

  • 0 Votes
    12 Posts
    9k Views
    Jules MansonJ

    @Claudia-Frank @Scott-Sumner

    Thank you all so much for your help. I decided to go back to my old tried and true editor. Although it is much bulkier and quiet expensive, it also has many more core features that don’t require plugins, its UI is very impressive, and best of all I have yet to find a bug. Yes I am talking editor Adobe Dreamweaver (CC 2017). I am not putting down Notepad++ but it does seem to be lacking a little. I guess it takes time for an app to develop into a mature system that can compete with other big boys on the.block. But its still a very good app if all you want to do is some quick simple coding which was why i picked up Notepad++ in the first place.

  • No Auto Updater?

    Locked
    3
    0 Votes
    3 Posts
    1k Views
    dailD

    Also keep in mind the auto updater is not immediately triggered in case major issues are found with the newest version. Sometimes this takes a few days or a week to deem a release stable enough.

  • Down for everyone, or just me... it's just me.

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Chip CooperC

    Awesome, will give that a go! Thank you very much.

  • File associations don't work

    3
    0 Votes
    3 Posts
    2k Views
    Maksum SaidiM

    Nah, I tried that.

    It also fails from Windows explorer. I right click a file and choose “Open with->Choose default program…”.

    It’s impossible to get NP++ to appear in the list of known programs and if you browse to it it simply ignores your selection.

    It seems just doesn’t like the 64 bit NP++ exe file.

    I’ve gone back to the 32 bit version (which works perfectly).

  • Sessions Enhancement Request

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Scott SumnerS

    @Greg-Heffernan

    Who really wants a bunch of “new X” pseudo-files hanging around?

    “Let’s see, where did I put that important thing I wanted to save…was it in the new 16 file…no…maybe it was new 12…no…well…hmmm…it’s here somewhere…”

    If it is important enough to type, it’s important enough to save properly, I always say.

    Anyway, suggest you look at the Take Notes plugin as it offers up a better way than the unsaved “new X” file method. Or a few lines of Pythonscript yield the same functionality; I have this tied to an entry in my right-click context menu, I call it TempFileYyyyMmDdHhMmSs.py :

    import os import time def TFYMDHMS__main(): temp_dir = os.environ['TEMP'] # or whatever... ymdhms = time.strftime("%Y%m%d-%H%M%S_", time.localtime()) new_file_fullpath = temp_dir + os.sep + ymdhms + '.txt' notepad.new() editor.insertText(0, '?'); editor.deleteRange(0, 1) # modify file so it can be saved notepad.saveAs(new_file_fullpath) TFYMDHMS__main()

    When run this script creates a new (saved) editor tab with a filename like this:

    Imgur

    And, obviously, once a file is named, it is saved along with other files making up a Session.

  • Write Protection is required at this level

    3
    0 Votes
    3 Posts
    2k Views
    glennfromiowaG

    @Meta-Chuh Well not entirely impossible, but not necessarily a Notepad++ function either. If sharing over a network, you can set access/attribute flags. I’d think that a Python script, for example, could set these flags, depending on the method of sharing.

    @Prabu-Balaji Is this a question on Notepad++ functionality, or a general file system question? If a file system question, perhaps a general Linux/Windows/SysAdmin/etc. forum would be a better place to get information. If you believe it is truly a Notepad++ question, please provide more details about how and where you are sharing the files and how you want Notepad++ to enable the write protection.

  • hello my notepad++ crashed , why ???

    3
    0 Votes
    3 Posts
    1k Views
    chcgC

    Also of interest: reproducible and which version of N++\plugins you used.

  • Find in Files , do not remember and move to specified path

    Locked
    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • 0 Votes
    5 Posts
    4k Views
    Jim DorfJ

    Of course you have the option not to participate.

    I don’t get the attitude of people: instead of saying, “Gee, it would be nice if this forum allowed signups without social media” you make it a complaint and an accusation.

  • No Drag & Drop Files into existing Notepad++ Window

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    Jim DorfJ

    AWESOME!!

    I set npp to “Run as Admin” recently because I had tried to save a file to an area that required elevation - and I didn’t want it to ever happen again.

    Turned that off and I have drag-and-drop back!!

    Thanks again and happy new year!! /jim

  • Blank Trim operations, on a text selection, ONLY

    7
    2 Votes
    7 Posts
    17k Views
    Scott SumnerS

    @taa1

    Try this:

    Find what zone: (?-s)^\h*(.*?)\h*$
    Replace with zone: \1
    In selection checkbox: ticked
    Search mode: Regular expression
    Action: Press Replace All button

  • Notepad++ disappeared entirely!!!

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    decodermanD

    No need to panic!
    None of the files you wrote are gone. NPP is a program to view files, it stores them to your selected location.
    Reinstalling NPP will be your fix.

    Is it possible that a Windows update removed NPP?
    Some Windows 10 updates did that for some reason at one time.

  • How to seperate time and text with an hyphen

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Dov KrumanD

    @Claudia-Frank said:

    @Dov-Kruman said:

    \d{0,2}:\d{2}

    I guess you want

    $0 -

    Cheers
    Claudia

    @Claudia-Frank said:

    @Dov-Kruman said:

    \d{0,2}:\d{2}

    I guess you want

    $0 -

    Cheers
    Claudia

    Thank you Claudia
    That is exactly what I was looking for
    Happy new year
    Dov