• Counting Characters

    4
    0 Votes
    4 Posts
    35k Views
    Gogo NeatzaG

    Notepad-plus-plus can do better. Check the View menu - Summary.
    This is the report about my test file:
    “Summary
    Characters (without blanks): 210
    Words: 10
    Lines: 10
    Current document length: 228
    9 selected characters (9 bytes) in 2 ranqes”

    The last line is displayed because I had two selected blocks at the time I wanted the ‘Summary’.

  • Print Preferences for the header - BOLD and Italics won't save

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    cipher-1024C

    All I can do is confirm this is the behavior I see on my machine. I tried removing the header information and re-adding it but nothing seems to make the Italic setting stick.

    On a separate note, I’m curious why the European company got your code in pdf. The only reason I can think of that the line spacing/header info would make a hoot of difference would be if you’re trying to compare the old code with the new code side-by-side. Can’t you just take your copy (not pdf) of the old code and the current version and stick them in WinMerge and send them a diff file? You cold even make the diff file a pdf if that’s some sort of company requirement for sending them code. I hate to side track a topic, but I just had to ask.

  • KOS in KSP word wraping???

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Robert McQuillenR

    Thanks Ill try that.

  • Elevated privileges when saving, doesn't work if different user

    Locked
    1
    0 Votes
    1 Posts
    790 Views
    No one has replied
  • Recent files menu item completely disappears after several runs

    Locked
    1
    0 Votes
    1 Posts
    586 Views
    No one has replied
  • Line spacing issue - File compare problem

    Locked
    6
    0 Votes
    6 Posts
    3k Views
    Wayne CampbellW

    Ok all. Discovered that the Adobe Pro print driver was defaulting to A4 instead of letter, like it does here in the us. so… That’s fixed…

  • NP++ Standard control characters

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    David BaileyD

    Well, you would have to start again, but I think by far the best thing to do is to switch to using UTF-8. This encodes the full set of UNICODE characters and is supported by NP++.

    I am assuming that when you say ‘made a font’ you haven’t actually created a font with your own glyphs, but simply want to write files using some UNICODE characters.

    David

  • Notepad++ just won't work for me?

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    David BaileyD

    I would guess you have just typed that into Notepad++ with no file attached. If you save the file in a file called test.html, then suddenly Notepad++ will ‘realise’ the file is HTML and colour it accordingly. Remember that Notepad++ can be used on many different types of files, and they all need highlighting differently.

    David

  • BUG: Hang when network-based documents open

    Locked
    2
    0 Votes
    2 Posts
    987 Views
    gstaviG

    This was discussed many times. 2 examples are here and there.

    Background, asynchronous and non-blocking are not simple for a legacy single threaded GUI application that was not designed for them.
    Just turn the detection off.

  • Plugin to import PHP builtin fucntions and displayed in FunctionList

    Locked
    5
    0 Votes
    5 Posts
    2k Views
    Mpho DondoloM

    Thank you so much. Your response was quite helpful

  • how to move text to other location in notepad

    Locked
    7
    -1 Votes
    7 Posts
    4k Views
    Vuvanvui VuiV

    thanks @guy038 , I started to really enjoy python, thankyou verymuch :)

  • When I reopen Notepad++ then it should display all files.

    Locked
    3
    1 Votes
    3 Posts
    1k Views
    ZaelotZ

    Apparently there’s a handy path where there’s a chance to find the unsaved ones in Settings > Backup > Backup path

  • Newb, I need to replace a varible?

    Locked
    2
    0 Votes
    2 Posts
    923 Views
    Eric A. StilesE

    Confusing on what you want, but I take it the Find and Replace wont work for this?

  • Notepad++ version 7.5.4 plugin manager doesnt work

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    chcgC

    See https://github.com/bruderstein/nppPluginManager/issues/98. Maybe this is a similar issue, otherwise please create a new one with the n++ debug infos under ?->Debug Info…

  • Reporting a Notepad++ crash and CrashDumps files

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    chcgC

    At least the debug info of n++ at ?->Debug Info … is of interest regarding win version, n++ version, plugins. With the matching pdb files it is possible to open the dmp file in VS debugger, see e.g. https://social.msdn.microsoft.com/Forums/vstudio/en-US/4c10f189-9338-4b9f-a980-1ad297c8ad16/loading-source-files-for-post-mortem-debugging-with-a-minidump-file?forum=vsdebug. Please report at https://github.com/notepad-plus-plus/notepad-plus-plus/issues.

  • TCL Syntax Highlighting Error

    Locked
    1
    0 Votes
    1 Posts
    753 Views
    No one has replied
  • Cloning/Moving to new view changes the font size

    Locked
    2
    1 Votes
    2 Posts
    1k Views
    Scott SumnerS

    @mukundjalan

    I haven’t heard of this happening before but maybe adjusting the Zoom level of one of the views (to hopefully match the other) would be a workaround.

    Your keyboard options for Zoom are found here: View (menu) -> Zoom -> …
    Your mouse option is to hold Ctrl while scrolling the mouse wheel.

  • FTP plugin problem | errorcode 123

    Locked
    4
    0 Votes
    4 Posts
    4k Views
    Евгений ПикаловЕ

    @PeterJones , thank you so much. I was looking for this pathethic mistake for few days.

  • How to convert

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    cipher-1024C

    The XML Tools plugin has a Pretty Print function that should help you out, provided your XML is valid.

  • A new bug found 180304

    Locked
    3
    0 Votes
    3 Posts
    1k Views
    古旮

    Thanks for the reply. And yes, it seems to be the Catastrophic Backtracking thing. And it seems this stackoverflow exception is not caught.
    The regex should be (?-s)d(.*\R){1,5}?.*c because c is not always the first of a line.
    I know I should avoid low efficient regex expressions, but it is buggy to directly show a wrong result instead of telling me the limitation is reached.