• Double-Click single Word selection problem

    Locked
    2
  • multi-line tab

    6
    0 Votes
    6 Posts
    21k Views
    Fadi RF

    @kawinga , question isn’t formulated clearly but I’m guessing from the screenshot that OP gave that he is referring to indenting paragraphs using tab. I believe your answer of multi-selecting a paragraph and hitting tab pretty much answers the thread. Thanks for that, I didn’t even know you can do that. It’s going to make my life alot easier… :)

    @Yongtao-Yang , thanks for your answer, that was actually exactly what I was looking for when I wondered into this thread.

  • Quick move back to caret after using scrollbar

    Locked
    9
    0 Votes
    9 Posts
    3k Views
    guy038G

    Hi, @joe-bonifazi, @alan-kilborn, @claudia-frank and All,

    Oh yes, I’m feeling quite silly too ! Joe, it’s just a very simple and clever solution :-D

    Reading the initial Alan’s post, I wanted to point him out to my reply to @yaron , six months ago about :

    https://github.com/notepad-plus-plus/notepad-plus-plus/issues/2471#issuecomment-255602837

    Now, you may, simply, read this reply just as an additional information on Scintilla commands about caret !!

    Cheers,

    guy038

  • Python script to replace on selection

    5
    1 Votes
    5 Posts
    5k Views
    Scott SumnerS

    @AlexCeed

    To elaborate a bit on @Claudia-Frank 's explanation, here’s some code that shows how to do a replace on only the text in one or more selections:

    find = 'a' replace = 'A' num_selections = editor.getSelections() for sel_nbr in range(num_selections): start_pos = editor.getSelectionNStart(sel_nbr) end_pos = editor.getSelectionNEnd(sel_nbr) editor.replace(find, replace, 0, start_pos, end_pos)
  • 0 Votes
    4 Posts
    2k Views
    Per IsaksonP

    The title of this page is: How to Add Support for a New Language to Exuberant Ctags

    C:\Users\poi\AppData\Roaming\Notepad++\plugins\TagsView\EXTENDING.html

    and TagView is based on ctags

  • using php function readline() in notepad++

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Bernard-JY

    because it is a command line function and is not supposed to be used within browser!??
    Nevertheless, you might get better support if you ask such questions in a php specific forum.

    Cheers
    Claudia

  • My '.css' file became empty after a crash!

    Locked
    1
    0 Votes
    1 Posts
    851 Views
    No one has replied
  • screen flickering every time you ctrl+f and it doesnt find anything???

    3
    -4 Votes
    3 Posts
    1k Views
    Johann v. PreußenJ

    @guy038 your SECOND thought should also be to delete this idiot’s account while removing this inane topic. serious users need not waste their time on such junk.

    thank you,

    johann

  • BSOD win7/64 pro using 32-bit npp 7.3.3

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • § is broken when loading up a .yml with it in it. shows up as ยง

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Add new line of text at end/target line for multiple files?

    2
    0 Votes
    2 Posts
    3k Views
    Claudia FrankC

    @VampireSeraphin

    give it a try with the following (regex and match newline needs to be checked)

    Find what: ^(.*?\r\n)(.*)$ Replace: \1SomeText\r\n\2

    ^ Start from beginning of file and the ? restricts to find as less as possible chars until a \r\n (windows end of line marks) appears
    which basically means the first line. Having enclosed in () means it get captured in variable \1 .
    Next capture group gets the rest of the text until $ end.

    In replace you need to add the text and the eols \r\n together with the matching groups.

    Cheers
    Claudia

  • Using Notepad++ on remote desktop sessions is SUPER slow

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @MuTLY

    I used npp via rdp in the past a lot but did discover that behavior.
    First thing I would try is to run npp bare minimum, without any plugin,
    to see if this is really related to npp or a plugin.

    Cheers
    Claudia

  • Upgraded to NPP++ 7.3.3 and now lock ups

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Esupportanalyst1114

    I don’t see an option to upload a screenshot.

    Upload to a hoster like imgur and use the following syntax to include it into the post

    ![](LINK_OF_YOUR_UPLOAD)

    Cheers
    Claudia

  • NppFTP upload works only for blank or very small files

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Steve-Kirton

    ftp servers can be configured to allow only upload of files with certain size.
    Could this be your problem?

    Cheers
    Claudia

  • How to remove the scroll bar?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Joey1986 said:

    When entering Fullscreen mode, I want to remove the scroll bar, how to do it?

    Actually I think without using a plugin like python/lua script or nppexec …
    npp doesn’t provide a way to do it.
    Using, for example, python script you could call something like

    editor.setVScrollBar(False) editor.setHScrollBar(True)

    Cheers
    Claudia

  • How to refresh the Folder as Workspace pane?

    Locked
    2
    0 Votes
    2 Posts
    4k Views
    Claudia FrankC

    @Andrés-Zsögön

    actually it looks like it works. I create a file within npp, folder as workspace was updated,
    Create a file from cmd (see screenhot) - worked.

    .

    Maybe you wanna describe your use case more clearly.

    Cheers
    Claudia

  • Make every line have a number

    Locked
    4
    0 Votes
    4 Posts
    2k Views
    Claudia FrankC

    @5Fretless said:

    Yes, but that disables… well, word wrapping and you have to scroll right to see everything. It just doesn’t work.

    Well, it does work - maybe not how you want it to behave but how it was supposed to do it.

    If you want to have different line numbers shown for a single line while having word wrap enabled
    I don’t see how this can be achieved without modifying the text.

    Cheers
    Claudia

  • How to disable most recently used list in "window" menu?

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Scott SumnerS

    @Ben-S.

    Well, those aren’t the most-recently opened files, those are the CURRENTLY open files. To get rid of them you’d have to do a File -> Close All but that probably isn’t what you want.

  • Where can I change the font?

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Scott SumnerS

    @Ben-S.

    Settings (menu) -> Style Configurator…

  • Adding pictures in notepad++

    Locked
    5
    0 Votes
    5 Posts
    3k Views
    guy038G

    Hi, @scott-sumner and All,

    And, here are the last ones !

    ___ ___ ___ ___ ___ ___ ___ ___ ___ ___ ___ ___ /\ \ |\__\ /\ \ /\ \ /\ \ /\ \ /\__\ /\ \ /\ \ /\__\ ___ /\__\ /\ \ \:\ \ |:| | /::\ \ /::\ \ /::\ \ /::\ \ /::| | /::\ \ \:\ \ /:/ / /\ \ /::| | /::\ \ \:\ \ |:| | /:/\:\ \ /:/\:\ \ /:/\ \ \ /:/\:\ \ /:|:| | /:/\:\ \ \:\ \ /:/__/ \:\ \ /:|:| | /:/\:\ \ /::\ \ |:|__|__ /::\~\:\ \ /::\~\:\ \ _\:\~\ \ \ /:/ \:\ \ /:/|:|__|__ /::\~\:\ \ /::\ \ /::\ \ ___ /::\__\ /:/|:| |__ /:/ \:\ \ /:/\:\__\ /::::\__\ /:/\:\ \:\__\ /:/\:\ \:\__\ /\ \:\ \ \__\ /:/__/ \:\__\ /:/ |::::\__\ /:/\:\ \:\__\ /:/\:\__\ /:/\:\ /\__\ __/:/\/__/ /:/ |:| /\__\ /:/__/_\:\__\ /:/ \/__/ /:/~~/~ \/__\:\/:/ / \:\~\:\ \/__/ \:\ \:\ \/__/ \:\ \ /:/ / \/__/~~/:/ / \:\~\:\ \/__/ /:/ \/__/ \/__\:\/:/ / /\/:/ / \/__|:|/:/ / \:\ /\ \/__/ /:/ / /:/ / \::/ / \:\ \:\__\ \:\ \:\__\ \:\ /:/ / /:/ / \:\ \:\__\ /:/ / \::/ / \::/__/ |:/:/ / \:\ \:\__\ \/__/ \/__/ \/__/ \:\ \/__/ \:\/:/ / \:\/:/ / /:/ / \:\ \/__/ \/__/ /:/ / \:\__\ |::/ / \:\/:/ / \:\__\ \::/ / \::/ / /:/ / \:\__\ /:/ / \/__/ /:/ / \::/ / \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ ____ ___ ___ _____ _____ _____ _____ __ __ _____ ____ __ __ ___ _____ _____ / \\ | // _ \/ __\ / ___>/ _ \/ \/ \/ __\/ \/ | \/___\/ _ \/ __\ \- -/ | | | __/| __| |___ || | || \/ || __|\- -/| _ || || | || |_ | |__| \___/ \__/ \_____/ <_____/\_____/\__ \__/\_____/ |__| \__|__/\___/\__|__/\_____/ ,--.--------. _ __ ,----. ,-,--. _,.---._ ___ ,----. ,--.--------. ,--.-,,-,--, .=-.-..-._ _,---. /==/, - , -\,--.-. .-,--.-`.' ,`. ,-.--` , \ ,-.'- _\ ,-.' , - `. .-._ .'=.'\ ,-.--` , \/==/, - , -\/==/ /|=| |/==/_ /==/ \ .-._ _.='.'-, \ \==\.-. - ,-./==/- / /=/_ /==/, - \|==|- _.-` /==/_ ,_.'/==/_, , - \/==/ \|==| ||==|- _.-`\==\.-. - ,-./|==|_ ||=|, |==|, ||==|, \/ /, /==.'- / `--`\==\- \ \==\, \/=/. /==| _ .=. ||==| `.-. \==\ \ |==| .=. |==|,| / - ||==| `.-. `--`\==\- \ |==| ,|/=| _|==| ||==|- \| /==/ - .-' \==\_ \ \==\ \/ -/|==| , '=',/==/_ , / \==\ -\ |==|_ : ;=: - |==| \/ , /==/_ , / \==\_ \ |==|- `-' _ |==|- ||==| , | -|==|_ /_,-. |==|- | |==| ,_/ |==|- '..'|==| .-' _\==\ ,\|==| , '=' |==|- , _ |==| .-' |==|- | |==| _ |==| ,||==| - _ |==| , \_.' |==|, | \==\-, / |==|, | |==|_ ,`-._ /==/\/ _ |\==\ - ,_ /|==| _ /\ |==|_ ,`-._ |==|, | |==| .-. ,\==|- ||==| /\ , \==\- , ( /==/ -/ /==/._/ /==/ - | /==/ , / \==\ - , / '.='. - .' /==/ / / , /==/ , / /==/ -/ /==/, //=/ /==/. //==/, | |- |/==/ _ , / `--`--` `--`-` `--`---' `--`-----`` `--`---' `--`--'' `--`./ `--``--`-----`` `--`--` `--`-' `-`--`--`-` `--`./ `--``--`------' _____________________________ ________________________________________________________________ 7 77 7 77 77 7 7 77 77 77 77 77 7 77 77 77 7 !__ __!| ! || - || ___! | ___!| 7 || _ _ || ___!!__ __!| ! || || _ || __! 7 7 !_ _!| ___!| __|_ !__ 7| | || 7 7 || __|_ 7 7 | || || 7 || ! 7 | | 7 7 | 7 | 7 7 || ! || | | || 7 | | | 7 || || | || | !__! !___! !__! !_____! !_____!!_____!!__!__!__!!_____! !__! !__!__!!__!!__!__!!_____!

    Best Regards,

    guy038