• Bug or missing?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Edward-Starski

    don’t know if you know that you can define it yourself.

    Goto Settings->Style Configurator->CSS->IDENTIFIER and add it to the user defined keywords.

    If it is just to inform that it is missing open an issue here.

    Cheers
    Claudia

  • [Bug] Notepad++ don't start with Explorer

    7
    0 Votes
    7 Posts
    6k Views
    Anton KorduanA

    The Post from Rana Rananjay Singh in https://notepad-plus-plus.org/community/topic/12253/failure-to-launch/23 shows the solution, without touching Dropbox.

    Its working.

    But for me it’s too late :-)
    Moved to Sublime Text 3 already and meanwhile i’m very happy with it.

  • Problems loading Scintilla Library

    Locked
    2
    0 Votes
    2 Posts
    4k Views
    dailD

    Something to keep in mind first of all is that if you just want to debug your own plugin’s code it is not necessary to build Notepad++ yourself. What I do for my plugins is create a post-build event that copies my DLL into the Notepad++ directory and then runs the notepad++.exe as the application for debugging. I can then step through my code, etc.

    In theory as long as the SciLexer.dll is next to notepad++.exe then it should work. The only thing I’d suggest is make sure you build them the same, e.g. 32bit/64bit/release/debug but it sounds like you are aware of the differences. I’ve always just stuck to 32bit without boost and haven’t had issues. If it is something specific to 64bit the maybe someone else can suggest some things to try.

  • [Plugin Update] - NppGTags v4.0.0

    19
    0 Votes
    19 Posts
    14k Views
    pnedevP

    Hi @olivercamel ,

    You are right about the need to use the mouse, I haven’t thought about that.
    I’ll consider your suggestion and might implement it (or something similar that fixes the inconvenience) some time in the future.
    Thanks for explaining.

    BR

  • Html ad CSS plugin support

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Html problems

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Adrian Parkash SuriA

    Sorry y mistake it wasn’t a duplicate plugin I had html auto complete on
    in preferences/auto-completion turned on and also had web-edit, at the same time

    thanks
    Adrian

  • 0 Votes
    1 Posts
    2k Views
    No one has replied
  • NppFtp - new file jamm everything

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Afik-Gilboa

    Can you exactly describe the steps you did?
    Please provide npp debug->info as well (? menu)

    Cheers
    Claudia

  • XML Tools plugin - request

    4
    2 Votes
    4 Posts
    5k Views
    pnedevP

    Great @MAPJe71 , thanks.

  • XML Tools not validating METS PREMIS example file

    4
    0 Votes
    4 Posts
    3k Views
    MAPJe71M

    You could post an issue at the XML Tools Plugin repository.

  • Change Marker Plugin?

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    Scott SumnerS

    It would be easier to help make suggestions if you say which ones you’ve already tried, instead of saying “I tried a few…”. Anyway, try the “Location Navigate” plugin–works for me to show which lines have been changed and/or saved.

  • [Bug] Folder as workspace makes notepad++ irresponsive with large folders

    2
  • [New Plugin] CutNCopyLine

    14
    0 Votes
    14 Posts
    8k Views
    Kasper GraversenK

    @dail oh… ;) well if we can do it in C# I think it would be fun to collaborate ;)

    also I would think the plugin entries can be shared on github. The major problem is to maintain versions of the plugins and ensuring noone is making destructive plugins or submitting destructive changes to existing plugings.

  • vpk files

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Power Tools for C developers on Notepad++

    2
    0 Votes
    2 Posts
    2k Views
    dailD

    The features you listed already definitely sounds like it could be incredibly useful. Is the plugin currently available?

  • use of Java in C++ plugin

    2
    0 Votes
    2 Posts
    2k Views
    dailD

    would it be possible to use JNI to provide some Java functionality to a C++ plugin?

    AFAIK this would certainly be possible assuming you know enough about JNI.

    do i need to do any character encoding/decoding

    Most likely. Getting the text from Scintilla just gives you a const char * to the text however it is currently set to be encoded. You’d also want to make sure any text inserted/added to Scintilla also has the proper encoding (SCI_GETCODEPAGE may be useful to you). Depending on what you are doing you can probably do this in either Java or C++ (I don’t know enough about JNI). When writing C++ plugins I’ve normally used MultiByteToWideChar() and WideCharToMultiByte().

  • Docking Position for dialog window

    3
    0 Votes
    3 Posts
    3k Views
    Timothy HarringtonT

    Thanks Claudia…let me try that…I do appreciate it.

  • Plugin For UnrealScript

    2
    0 Votes
    2 Posts
    4k Views
    Claudia FrankC

    @Luke-Bawden

    Someone has already made an UDL maybe you can use this one?

    Cheers
    Claudia

  • Excellent Feature! Add this!

    Locked
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Help with making a simple plugin

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    0Megaman540

    NPPM_SETBUFFERENCODING works only for new and unedited files and i need to also modify opened files that have text in them.
    Is there a message to convert the file to UTF-8?

    EDIT: I found it in the header files, IDM_FORMAT_CONV2_AS_UTF_8 and IDM_FORMAT_CONV2_UTF_8.