• Scintilla buffered drawing - Is it needed?

    5
    0 Votes
    5 Posts
    2k Views
    pnedevP

    Hello all,

    FYI, I tried disabling the Scintilla buffering and worked with N++ some time this way. In some occasions I observed flickering in the Sci view that was not present with buffering enabled. So it appears the buffering is actually necessary.
    Thanks.

    BR

  • UDL for AutoCAD (*.lin, *.scr, *.shp, *.pat) files

    Locked
    2
    1 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @rddim
    Thx for sharing :-)

    Cheers
    Claudia

  • 0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Carlos-Eduardo-Guerra-Silva

    see here.

    Cheers
    Claudia

  • Notepad++ styles

    20
    0 Votes
    20 Posts
    16k Views
    Jim DaileyJ

    @Alan-Kilborn You could always include this (see http://patorjk.com/software/taag/#p=display&h=1&f=Small&t=Never change this!):

    _ _ _ _ _ _ _ | \| | ___ __ __ ___ _ _ __ | |_ __ _ _ _ __ _ ___ | |_ | |_ (_) ___| | | .` |/ -_)\ V // -_)| '_| / _|| ' \ / _` || ' \ / _` |/ -_) | _|| ' \ | |(_-<|_| |_|\_|\___| \_/ \___||_| \__||_||_|\__,_||_||_|\__, |\___| \__||_||_||_|/__/(_) |___/

    :-)

  • Empty items when customizing Syntax menu

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Nikolay YushmanovN

    Sorry, English is not my native. I use localized NPP. Correct menu name is ‘Language’, so my post must be:
    We can customize Language menu and deactivate some unneeded languages.
    When all languages that begins with the same letter are deactivated, the letter-item stays at the Language menu but it does not contain subitems. I think, the empty letter-item must be removed from Language menu.
    I think, when all but one languages that begins with the same letter are deactivated, the letter-item must be replaced with remaining active language item.

  • Graphical Glitch

    Locked
    1
    0 Votes
    1 Posts
    969 Views
    No one has replied
  • Feature Request: Streamline the update process

    Locked
    1
    1 Votes
    1 Posts
    913 Views
    No one has replied
  • Bug report

    Locked
    4
    0 Votes
    4 Posts
    2k Views
    Claudia FrankC

    @John-Bloom

    as far as I remember this was an issue with the windows file dialog.
    The same should happen if you use MS notepad. You need to reselect the file
    after you have renamed it.

    @Alan-Kilborn
    This doesn’t affect linux users :-D

    Cheers
    Claudia

  • Rss feed

    7
    0 Votes
    7 Posts
    4k Views
    Reed ScarceR

    For something with a name that begins “Really Simple,” the implementations are terrible, IMO. But I think I’ve found a project to help me create something useful while learning how to use this editor.

  • Does Notepad++ Support HTML5/CSS3?

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    Mahesh KollaM

    It is just a editor where it identifies tags and properties which is not possible with notepad .you can’t run html/CSS in notepad++.

  • More powerful "Folders as Workspace" (Feature request?)

    Locked
    1
    0 Votes
    1 Posts
    952 Views
    No one has replied
  • 0 Votes
    2 Posts
    2k Views
    AdrianHHHA

    The bottom right corner of the Find window has a section on “Transparency”. Perhaps you can adjust the settings there, so the window shows as you would like.

  • Just one question ...

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Nicolas VérieN

    Ok, it reassures me. ^^’
    Thanks a lot !

  • Scintilla 3.7.0

    11
    4 Votes
    11 Posts
    11k Views
    Ethan PiliavinE

    This is a great build. I am quite happy to see you have released it.

    Maybe its time for a fork? If you would be willing to make the long standing changes many people have been waiting for, like updated UI, better plugin manager, etc…

  • File has changed/reload dialog options

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Grahame-Grieve

    is there a place to propose this?

    Yes, here, as an feature request.

    Cheers
    Claudia

  • inconsistencies between Language menu and Style configurator

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Roeland-Schoukens

    as far as I remember, bash is the only buitlin unix shell language and because it
    suits most of the others it has been decided to name it shell.
    If you feel/think this is counterproductive you might think opening
    an issue at github.
    Please double check if it hasn’t been opened already.

    Cheers
    Claudia

  • Feature Request: Smart scrollbar

    Locked
    2
    1 Votes
    2 Posts
    2k Views
    Alan KilbornA

    @Felipe-Solanet

    Right, we should make Notepad++ just like Visual Studio! Hmmm, in which case, why not just use Visual Studio? I like how Notepad++ has its own mind, and is lightweight compared to VS.

  • feature request:find all button.

    Locked
    2
    0 Votes
    2 Posts
    1k Views
  • Feature Request: Snake-Case/Camel-Case keyboard nav

    5
    0 Votes
    5 Posts
    4k Views
    guy038G

    Hi, Dail, Aviv and All

    Ah, yes ! I didn’t think about these four Scintilla commands. For further information :

    http://www.scintilla.org/ScintillaDoc.html#Words

    But there are some differences between the two methods :

    My regex puts the caret AFTER the underscore character, whereas these commands place it BEFORE

    The Scintilla SCI_WORDPART* commands put the caret at many more locations than my regex ! Indeed, it stops at each beginning and end of any range of word characters !

    BEWARE : for people, who DON’T have an American standard keyboard, the default keys, associated with the CTRL key, may be completely different ! For instance, on my French keyboard, I must use :

    The CTRL key and the / : key, for forward location

    The CTRL key and the µ * key, for backward location

    So, you’ll have to experiment some shortcuts, before finding the right one !. Of course, you may use the Shortcut Mapper to change these default shortcuts :-)

    On the other hand, Aviv, may be, you’ll prefer this second regex, below :

    (?-is)(?<=\l)(?=\u)|(?<=\W|_)(?=\w)|(?<=.)(?=\R)

    Compared to my previous regex, it would put the caret, either :

    Between any lower-case letter AND any upper-case letter

    Between ( any NON-word character OR an underscore ) AND any word character

    Between the last standard character, of a line and its End of line characters

    Just try it, for instance, with the text below :

    http://www.scintilla.org/ScintillaDoc.html#SCI_WORDPARTLEFT

    Then, if necessary, each word, located at right of the caret, can be selected with the CTRL + SHIFT + RIGHT shortcut

    Best Regards,

    guy038

  • 0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @RE-Mant

    maybe you wanna change this setting?
    Settings->Preferences->Default Directory->uncheck Use new style save dialog…

    Cheers
    Claudia