• Order Plugin Menu Items

    7
    0 Votes
    7 Posts
    6k Views
    dailD
    @Ahu-Lee Instead of generically stating it doesn’t work, you will have to provide more details to even attempt to figure out why it isn’t sorted for you. Because I’m using v7.4.2 and it is working fine for me.
  • Session File Corrupted or Invalid Error

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    decodermanD
    Use the File -> Load session to find out which file it loads, without loading it. It opens the “open file” window. Then close NPP and rename the file and open NPP again. This might work. If it does, delete the renamed file.
  • Trouble making a functionList parser for MATLAB

    29
    0 Votes
    29 Posts
    22k Views
    Per IsaksonP
    @MAPJe71 I’ve finally uploaded some <parser>-elements to the Matlab File Exchange.
  • NppFTP has stopped uploading when Ctrl+S or Save icon clicked

    2
    0 Votes
    2 Posts
    2k Views
    Pete NorrisP
    I think I may have solved my own problem. I had several (6 or 8) files in the Notepad++ editor. Some of the files had been open inside the editor for several weeks. I closed all of the files, uninstalled Notepad++, then did a clean installation. It seems to be working okay now. Evidently, leaving open files in Notepad++ for weeks caused something to get clogged up. One of the mods can mark this thread resolved if they like.
  • Does anyone know what this line is?

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    decodermanD
    It’s the Vertical Edge and it marks the column. This is a visual help when coding. Settings/Preferences/Editing, the setting is in the center of the pop-up.
  • Notepad++ Unresponsive on being maximized

    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC
    @陳同 does this happen also if no plugins are installed? To test you might run npp with -noPlugin switch or temporarily rename plugin directory. If this doesn’t help, please post you debug-info which is available under ? menu. Cheers Claudia
  • Newbie - How to apply file extension formatting when opening a .js file

    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC
    @Dickie-Davies check if another language has occupied the .js extension. Either use the Dialog Settings->Style Configurator and step through the languages or open langs.xml and see which language uses the extension. Cheers Claudia
  • Trouble Setting Up NppExec to Learn C++

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Steve Daley175S
    Thank you, Jim Dailey, that did the trick. I see why that worked now that I look at it. I should have considered that. The forum post that I saw seemed to indicate that the original code that I had without the extra cmd /c should have worked. Now I’m off to learn C++ which looks to be a challenge for an old dog.
  • How to convert a textfile and really show german umlaute?

    3
    0 Votes
    3 Posts
    5k Views
    Ben S.B
    It works. Thank you
  • Ctl+tab not working

    2
    0 Votes
    2 Posts
    2k Views
    Per IsaksonP
    @cjmac27 There are a couple of check-boxes, which might need checking: Settings,Preferences,MISC., “Document Switcher”, check Enable and check Enable MRU behaviour.
  • tabs selected when doubleclicking on words

    8
    0 Votes
    8 Posts
    4k Views
    HotmelH
    @Claudia-Frank Oh. After a few days the problem disappeared. Exactly. It seems that the plugins haven’t been updated. Nothing plugins was switched off. Npp ver 7.3.3 remained as before. Mystic. Perhaps the problem disappeared after reseting “Preferences -> Delimiter” and restart Npp.
  • Run Command Error Notepad++

    Locked extension run avr atmel
    2
    0 Votes
    2 Posts
    2k Views
    Scott SumnerS
    @Arnav71 If I’m understanding correctly, why not just make a second version of that command with “clean” embedded into it?
  • Custom Language not recognized

    Locked custom language
    4
    0 Votes
    4 Posts
    2k Views
    Jim DaileyJ
    @Picasso-CT Zebra should appear BEFORE eagle. That is, Upper-case letters are lexically less than lower-case letters.
  • 0 Votes
    7 Posts
    3k Views
    Scott SumnerS
    @Contafisc-Empresarial Unless I am misunderstanding what you are wanting to do (very possible!), I’d say that changing [^0]. to [^\s0]{2} does what you need. It means: for the next two positions, match as long as both positions are not some combination of: whitespace (the \s) zero (the 0)
  • Feature suggestion: tab-specific display settings

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Change main single word select color when smart highlighting enabled?

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • Switching between themes easily

    settings switch theme
    2
    0 Votes
    2 Posts
    2k Views
    acrolinkA
    Any news on this topic?
  • XML Tools - Validation Issue

    failed to locat xml schema xml tools validation
    4
    0 Votes
    4 Posts
    7k Views
    w3artwW
    This seems to be an issue with the https / TLS connection - at least in my case it works fine without https in front - with https I receive this error. Maybe this can be fixed easily in the next version. Thanks, Mark
  • Find and replace / Timecode / SRT

    replace timecode srt subtitles
    5
    0 Votes
    5 Posts
    5k Views
    Scott SumnerS
    Borrowing somewhat from @guy038 's technique of the lookahead assertion proposed as a solution for this posting: https://notepad-plus-plus.org/community/topic/13761/multiple-copy-paste-notepad , here’s a way of solving the problem presented in the current thread using only ONE Replace-All (instead of TWO as proposed earlier). Find-what box: ^(\d{2}:\d{2}:\d{2})\.(\d{3})(?=.*?(\d{2}:\d{2}:\d{2})\.(\d{3})) Replace-with box: \1,\2 -> \3,\4 Search mode: ☑ Regular expression -AND- ☑ . matches newline If this (or ANY) posting was useful, don’t post a “thanks”, just upvote ( click the ^ in the ^ 0 v area on the right ).