• Feature request: improvements to keyword highlighting (style tokens)

    7
    2 Votes
    7 Posts
    9k Views
    cmeriauxC

    @Zoltán-Kelemen said:

    “Make clearing style tokens behave the same way as marking style tokens (i.e. per keyword. Currently “remove a style” removes that highlight from all keywords not just the highlighted one. Adding on the other hand is additive)”

    You can clear style by style:
    Search\Unmark All\ Clear 1st style
    Search\Unmark All\ Clear 2st style

    Style tokens uses the options of “find GUI” to work (whole word and match case)

  • No file extension gets added to filename upon saving (Notepad++ 7.3.1)

    4
    0 Votes
    4 Posts
    4k Views
    dailD

    @hmuellers

    This is a known issue and is already fixed for the next release.

  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • Notepad++ not usable with network drives

    2
    0 Votes
    2 Posts
    1k Views
    Js jSJ

    please provide more information

    which operating system do you use?

    what do you mean by “interface”? … Notepad++ or computer?

    please list the sequence of events and actions that lead to the problem

    for example:

    i navigate to a network drive and double click on text file Notepad++ opens and i start editing the text file network drive drops out sometime during editing i try to save the text file and Notepad++ freezes for 20 minutes.
  • Notepad++ to remember collapsed code

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    Claudia FrankC

    @Hamster-Cage

    Normally you did get this if remember session functionality has been enabled.
    But it looks like it is broken.
    The session.xml still has the fold points but if I restart npp the document is expanded completely.

    Needs more investigation.

    Cheers
    Claudia

  • When does Auto Updater trigger?

    7
    0 Votes
    7 Posts
    5k Views
    mkupperM

    Here’s an update to my previous post to more directly answer the OP’s question. 7.3 was released on 1 Jan 2017. Unfortunately, it seems that forum @administrators do not usually announce when a release is shifted from pre-prelease mode to production so that the built-in check-for-updates thing updates can pick it up. I suspect 7.3 was never released to production though it’s possible it was released and then withdrawn when the incorrect MD5 issue became known. The MD5 issue was fixed in 7.3.1 on 17 Jan 2017.

  • 0 Votes
    1 Posts
    989 Views
    No one has replied
  • function list does not work for files opened via WinSCP

    Locked
    7
    0 Votes
    7 Posts
    3k Views
    Scott SumnerS

    @Claudia-Frank

    I didn’t mean the code could handle any programming language. I meant that the Pythonscript coder could account for it (any programming languages they are interested in) at coding time. :)

    And of course I meant any “realistic” programming language with a decent syntax, not necessarily the languages with hellish syntaxes. Thus, not ANY programming language; I should have been clearer.

    I’ve done this sort of thing before in MultiEdit’s macro language (CMAC) for the C family of languages, and Perl/Python. That’s what I’m basing my “wouldn’t be too hard” comment on.

  • Notepad++ 7.3.1 - Auto Reload doesn't work

    Locked
    3
    0 Votes
    3 Posts
    4k Views
    Andrea PaciniA

    The updates works only with “Reload from disk” menu.
    It seems that is a common problem for all files.
    I tried with 3 files updated by external application (log files)

  • Notepad++ v7.2.2 Crash

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Johan Siwerth25J

    If you are on Windows you might right-klick it and choose “Restore previous versions”.
    (same as r-klick, “Properties”, tab “Previous Versions”).
    According to Windows Help, there’s one backup per restore point (haven’t checked if settings influence this).

  • Need new functionality - add time and date timestamp

    3
    0 Votes
    3 Posts
    6k Views
  • Feature request: Virtual space

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Scott SumnerS

    @Eddy-Q227

    It can be enabled currently without an need for a code change to Notepad++. See http://superuser.com/questions/401551/notepad-cursor-past-end-of-line-virtual-spaces for a possible procedure (there are others, e.g. with Pythonscript).

  • Update check

    2
    0 Votes
    2 Posts
    4k Views
    Claudia FrankC

    @0wlc0der

    currently I don’t see a way to reconfigure this and in addition
    I would think it might be more useful to check on start but running in the background.
    When exiting npp user should be asked about a new version ready to install with an option to skip
    this release at all or to postpone installation for another few days.

    Cheers
    Claudia

  • Set Read-Only Edit function feature request

    6
    0 Votes
    6 Posts
    5k Views
    Scott SumnerS

    Minor correction to the sample output, forgot the “Sel” part earlier. It should actually look like this:

    Ln:229 Col:103 Sel: 0|0 +r

  • 0 Votes
    3 Posts
    4k Views
    gstaviG

    Not sure this is the same thing but a colleague of mine recently tried to change fonts in NPP. He changed it for the C language styles but for tab and spaces NPP (or Scintilla) refer only to the Global Styles --> Default Style. So the they were not synchronized to the C code. E.g. 4 spaces where shorter than 4 C chars since spaces where in ‘Global’ font and not the C font.

  • wanted to write in different color

    4
    0 Votes
    4 Posts
    4k Views
    Claudia FrankC

    @raja-sekhara-reddy-vangala

    npp is not a writer/word/wordpad/ replacement.
    If you need such functionality then you better use one of those.

    Npp is an editor which colors different parts of a text based on
    a lexers’ rules. This is done every time you open the respective file
    and not stored if you close the file.

    So when you want to have a particular file always get colored
    based on such rules and non of the builtin lexers can be used,
    you need to create your own lexer by using the user defined language dialog.

    Cheers
    Claudia

  • Go To... offset ignores BOM

    13
    0 Votes
    13 Posts
    7k Views
    Claudia FrankC

    What I guess I found out so far is the following

    First npp tries to detect if the file is a BOM file, if it is,
    it gets rid of the BOM signature and continues reading the file in converted utf-8.

    If it isn’t a BOM file it’s calling chardet library to see what codepage to use.
    If chardet returns, it is checked if it is reported to be utf-8 -> go on reading the file …
    if not, convert it to utf-8.

    But this, of course, happens only “virtual” for scintilla control.

    Cheers
    Claudia

  • [Request] Inline realtime find

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Scott SumnerS

    @Giancarlo-Riccio

    Are you by any chance talking about the capability provided by Notepad++'s Incremental Search feature?

    See the Search menu -> “Incremental Search”.

    If not, please clarify your inquiry…

  • what features does notpad ++ does not have

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    King NogerK

    okay thanks