• Annoying beep on Alt+Backspace

    bug
    15
    0 Votes
    15 Posts
    9k Views
    gstaviG
    @Scott-Sumner is correct and mapping alt-backspace to a different function prevents the BEEP. Probably NPP capture it and fully handle it before it reaches the BEEPING control. I got curious enough to actually open the code. This exist in NPP shortcut table: {TEXT("SCI_UNDO"), SCI_UNDO, true, false, false, VK_Z, IDM_EDIT_UNDO}, {TEXT(""), SCI_UNDO, false, true, false, VK_BACK, 0}, Initially I thought that maybe NPP is at fault after all because ctrl-z has IDM_EDIT_UNDO which is missing from alt-backspace. But after commenting out the alt-backspace line and compiling I had a version of NPP where alt-backspace no longer UNDO but still BEEPS. Since ALT-xxx shortcuts are often associated with menus I guess that this is the beeping component.
  • Scintilla buffered drawing - Is it needed?

    5
    0 Votes
    5 Posts
    3k 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
    17k 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 customize menu syntaxis
    2
    0 Votes
    2 Posts
    2k 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
    1k Views
    No one has replied
  • Feature Request: Streamline the update process

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

    Locked
    4
    0 Votes
    4 Posts
    3k 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
    1k 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
    12k 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
    2k 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
    2k 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 find
    2
    0 Votes
    2 Posts
    2k Views
    Scott SumnerS
    @张圣月 , There are solutions to this problem proposed here: https://notepad-plus-plus.org/community/topic/12710/marked-text-manipulation/
  • 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