• v7.5.2 and v7.5.3 file Status Auto Detection don't work

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @林園

    file status auto detection seems to work for me - could you explain what
    you did t try to replicate it?

    What do you mean by language menu doesn’t keep setting?

    Cheers
    Claudia

  • need help with setting

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Johelky-Soto

    sorry, but if you really want help you need to describe in more detail what you want to do
    and what you already did. Your post doesn’t contain any useful information. We can assume
    certain things but we don’t know for sure - so may I ask you to clarify your issue in more detail?
    Keep in mind, the better you describe your question the easier it is for someone to post an answer.

    Cheers
    Claudia

  • 1 Votes
    3 Posts
    1k Views
    David Shuman235D

    Sounds good.

    that may be enough of a hint to go either way,
  • Plugin manager not present in 32bit or 64bit npp version

    9
    1 Votes
    9 Posts
    28k Views
    Andrés ZsögönA

    “plugin manager it is not provided with notepad++ anymore”

    Excellent way to ensure users will stick to an older version. Honestly, if the objective is to keep users away from new versions, the developers have done a superb job. I couldn’t thinkg a better way. Thumbs up.

    Why don’t they also remove the toolbar entirely from next version, to make more users rollback to previous releases? Or delete the Folder as Workspace functionality, or the Cut+Copy+Paste shortcuts. This will make more and more users return to older versions too.

  • colorization bug in javascript

    Locked
    1
    0 Votes
    1 Posts
    752 Views
    No one has replied
  • Shortcuts for HTML

    6
    0 Votes
    6 Posts
    9k Views
    chcgC

    Emmet (ex-Zen Coding) is a web-developer’s toolkit that can greatly improve your HTML & CSS workflow, see
    https://github.com/emmetio/npp#readme
    , but this plugin is not available for the x64 version of N++.

  • How to add a photo to Notepad++

    Locked
    5
    -1 Votes
    5 Posts
    10k Views
    Sybell LirwacoS

    notepad++ is only a “text” editor, not a HTML editor. You can view a image in ANSI code like this:
    ‰PNG
    

    IHDR d d Úë]ß gAMA ± üa cHRM z& €„ ú €è u0 ê` :˜ pœºQ< bKGD ª#2 pHYs  ÒÝ~ü tIMEá *®ã4P |IDATxÚÅœk¬mWußó±ûq^÷aûšk_cü6
    qDÆDÁ@]É ¦
    j¹DU[Z7‚ò1m¥(Qˆ"•|H”J­p¿ %Q

    No images will display in notepad++. For HTML editing without HTML viewer, you can use notepad++. For images the HTML img tag: https://www.w3schools.com/tags/tag_img.asp

  • [Help] Unable to transfer files via Notepad++ to my Amazone EC2 instance

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Ricky MossipR

    I’d like to add some information to my post.

    I also tried setting up WinSCP to connect to my server via sFTP. When I try to transfer files, it says permission denied

  • Notepad on my mac

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    Claudia FrankC

    @Anda-Pearson

    there is NO official release for linux and mac. What you can do to make it work is using
    wine, which basically provides the winapi layer needed to run windows applications and
    converts it to the underlying operating system calls.

    Cheers
    Claudia

  • CSS Stylesheet parser for Function List?

    Locked
    7
    0 Votes
    7 Posts
    3k Views
    MAPJe71M

    @Jim-Kolb

    Is it possible to give the classrange a unique name not from the parsing?

    AFAIK No.

  • How to search for a string and replace with blank

    5
    0 Votes
    5 Posts
    21k Views
    glennfromiowaG

    @Quincy-Gouveia NON-insensitive refers to case-sensitivity, that is, whether or not the search is sensitive to capital letters being different from lower-case letters. For example, searching for bla in a case-insensitive search would ignore the case of the letters and could match Bla, BLA, or bla, but searching for bla in a case-sensitive (= NON-insensitive) search would only match bla. This is the same as checking (sensitive) or unchecking (insensitive) the Match case checkbox in the Find dialog box in Notepad or Notepad++. @guy038 referred to it as NON-insensitive (a double-negative) to explain the meaning of the -i (insensitive) flag.

    Simple answer:

    Type -- in the Find what: box, making sure that especially the Normal Search Mode is checked. However, this will not include any following characters in the match, which may or may not matter, depending on what you want to do after you find this text.

    Exact answer:

    I wasn’t aware Windows Notepad allowed you to use wildcards, but I assume that you’re asking about how to search in a way equivalent to using the Windows wildcards * and ?. You want to search for two hyphens --, followed by a space ( ), followed by 0 or more of any character, and include any characters after the space in the match, correct?

    I’m actually surprised your search did not succeed, unless perhaps you had the Normal Search Mode selected instead of Regular Expression? A regex of -- * should search for two hyphens followed by 0 or more spaces. But read on to discover the technically correct answer that actually selects the text after the hyphens + space combination.

    One good primer on Regular Expressions can be found at http://www.regular-expressions.info, but here’s a 3-point start:

    To search for any character, use the full stop/period . character. Equivalent to Windows wildcard ?. To search for 0 or more occurrences of a character, follow the character with an asterisk *. Windows uses the asterisk by itself to mean 0 or more occurrences of any character, but Regular Expressions uses it to act on the character before it. For example, ap* could match anchor (a plus 0 p chars following), ape (a plus 1 p char following) or apple (a plus 2 p chars following), etc. To search for 0 or more occurrences of any character on that line, use .* This is equivalent to Windows wildcard *, but requires the full stop . before it.

    Here is how you would search in Notepad++ for any line that contains two hyphens, followed by a space, and include all following text on that line in the match:

    Move back to the very beginning of your file Open the Replace dialog ( Ctrl + H ) Type this regex string in the box following Find what: -- .* Leave all the options unticked. Select the Regular expression search mode. Click on the Find (or Find > >) button.

    If you want to remove, replace, or modify the SQL comment, or if you want to require that the comment start at the beginning of the line, you can do either of those and more. Please post again with more details if you need help with what you want to do next. I also would strongly recommend at least skimming a Regular Expression tutorial.

  • Issue switching to NPP with Alt+Tab on Windows 10 Pro

    Locked
    1
    0 Votes
    1 Posts
    973 Views
    No one has replied
  • Would love to abandon Dreamweaver, but...

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Scott SumnerS

    @David-Stoltz said:

    I love the search & replace functions, that allow you to search open, current, or selected files

    open: yes in N++
    current: yes in N++
    selected: sort of in N++…you can specify a folder and wildcard-based filespecs to filter on…and if you want subfolders searched(/replaced) or not…but you can’t pick and choose individual files by some sort of checkbox highlighting if that’s what you’re after

  • Hex/EBCDIC edit mode

    Locked
    5
    0 Votes
    5 Posts
    14k Views
    Vagner Almeida MartinsV

    My apologies, I really had not understood your answer, anyway, thanks for the feedback.
    I will be waiting for a possible solution to my suggestion.

  • 2 things that I would like

    6
    1 Votes
    6 Posts
    2k Views
    Claudia FrankC

    Can confirm, it looks like the bookmark will be moved to the next line of the selection, like

    having the following text (O indicates the bookmark, numbers obviously the line margin)

    O 1 hello hello 2 world world 3 hello hello 4 world world

    bookmark on first line and selection is on complete first line
    (eol included so that cursor is on first position on second line)
    then by pressing alt+u it will result in this

    1 Hello Hello O 2 world world 3 hello hello 4 world world

    if selection is line 1 including line 3 (cursor is on first position on line 4) results in

    1 Hello Hello 2 World World 3 Hello Hello O 4 world world

    and by selecting all text, bookmark will be deleted

    1 Hello Hello 2 World World 3 Hello Hello 4 World World

    Cheers
    Claudia

  • Associated Extensions

    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Nidal-Awartany

    Microsoft tends to change this from time to time so I would recommend
    using the windows way to make this registrations.

    Cheers
    Claudia

  • Left margin

    3
    0 Votes
    3 Posts
    2k Views
    Mikhail VM

    @Massimo-Furlani

    Yes it is possible to set the left margin of the whole window.
    But you should try to describe the exact result you want to achieve,
    or ideally make a screenshot. Otherwise it can result in misunderstanding.

  • Rerun find all.

    Locked
    2
    1 Votes
    2 Posts
    1k Views
    Scott SumnerS

    @Tom-Vines said:

    quick refresh results in the Find Results box

    Yes, nice suggestion…

    bit of a bug

    Not really a bug, per se, if you have edited the text of the document since you last did something that had populated the Find result panel. The panel remembers the positions in the document at the time the search was run. Changing text since the time of search moves the text so that the recorded positions are shifted.

  • Right text margin

    4
    0 Votes
    4 Posts
    2k Views
    Scott SumnerS

    @Manlio-Bovecchi

    The solution to that is to set the window size to more-or-less correspond to the Vertical Edge setting. Or open a second view and then do a similar thing with the splitter (although that is less desirable since the splitter position doesn’t get retained between Notepad++ runs.

  • Split line in text file

    5
    0 Votes
    5 Posts
    6k Views
    V S RawatV

    try plugin TEXTFX, you will find many easy methods for such manipulations.