• I've lost all my open tabs...

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Alex KarasevA

    Oh, I’ve found a backup folder, I’m saved )

  • Function List for Simatic

    20
    0 Votes
    20 Posts
    12k Views
    MAPJe71M

    Yes that can work, in your case!
    Change commentExpr to "(?m-s:;(?!\$PATH).*?$)".

  • Spell-Checker doesn't work

    Locked
    3
    0 Votes
    3 Posts
    4k Views
    coffent1C

    Thanks - that worked!

  • 0 Votes
    3 Posts
    2k Views
    nekokwantixN

    sorry, I guess it’s “tabs” not “tags”

    but what I’m looking for is scrolling among the pages to drag’n drop with mouse only

    (sorry for my english! :-) )

  • Can not see all bulgarian letter

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Tab set at 4 spaces - only moves 2.

    3
    0 Votes
    3 Posts
    2k Views
    Claudia FrankC

    @Max-Russell

    this setting means that if pressing the tab it jumps to the next tab stop which would
    be a multiple of 4 in your case.

    E.g pressing tab after “a” jumps to e, after “b” still jumps to e …after “d” jums to i

    abcdefghi a e ab e abc e abcd i

    Cheers
    Claudia

  • Block uncomment does not work?

    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Byron-Smith

    afaik ASP language doesn’t have block comment/uncomment feature.
    Select the lines and use single line comment/uncomment - works.

    Cheers
    Claudia

  • What Print Preferences Header Variables are available?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Michael-Randall

    not sure if it is the full list but worth looking anyway.
    http://docs.notepad-plus-plus.org/index.php/Defining_User_Commands

    Cheers
    Claudia

  • how to turn settings back to normal?

    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Henrik-Halvorsen-Kvamme

    depends what you have changed, npp stores it in various xml like config.xml or shortcuts.xml etc…
    If you delete the file it gets recreated with default settings.

    Cheers
    Claudia

  • override NppFTP.xml

    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Claudio-Schneider

    if backup was enabled you might look at either the APPDATA\notepad++
    or at your npp installation directory for a backup subdirectory.

    Cheers
    Claudia

  • macros missing after upgrade to 7.1

    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Howard-Lattimore

    could it be that you changed your installation type from APPDATA to local or vice versa?
    If so, you might check the shortcuts.xml in either APPDATA\notepad directory or in your
    installation directory.

    Cheers
    Claudia

  • Using a user-defined language as default?

    12
    0 Votes
    12 Posts
    12k Views
    Claudia FrankC

    @Jim-Dailey
    sorry for late answer - well it depends, first version of the script
    looks for new files as user was asking for any new file feature.
    The modified version for Rich Goldman uses fnmatch as he was asking
    for a way to look pattern specific.

    @Rich-Goldman
    beside the solution Scott mentioned you might think of
    checking only the current file if it matches your pattern and run
    the MenuCommand to enable your UDL. All other files get set
    once switched to them - as you already stated.

    So something like

    if fnmatch(notepad.getCurrentFilename(), 'YOUR_PATTERN'): ... do your stuff ...

    before or after your callback definition.

    Cheers
    Claudia

  • Synchronize line highlight?

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    Claudia FrankC

    @Redwood-Ryan

    Do you know Compare plugin?
    I assume that it could be very helpful for you.

    Cheers
    Claudia

  • MS Linedraw Characters in Notepad ++

    3
    0 Votes
    3 Posts
    2k Views
    guy038G

    Hello flywire,

    I suppose that your current font is, for instance, MsLineDraw.ttf or some equivalent font !

    Then, to correctly see the characters, with code between 128 and 255, just use the N++ menu option Encoding > Character Sets > Western European > OEM-US

    And if you select the menu option Edit > Character Panel, you should see the glyphs of all the possible characters, in the US encoding, which should be identical to the ones generated by the MsLineDraw.ttf font :-)

    Best Regards,

    guy038

  • python script: additional chars and smarthighlight

    9
    0 Votes
    9 Posts
    4k Views
    Gytis MikuciunasG

    Scott, you’re right.
    I have updated my noteped++ to the newest version and now it works as expected.

    thx a lot!!!

  • REGEX - select the numbers situated in brackets (with the bracket)

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Vasile CarausV

    I find the solution:

    \((\d+)\) Select numbers located in round brackets

    \[(\d+)\] Select numbers are in square brackets

  • Copy text from notepad++ to putty terminal loses formatting.

    Locked
    2
    0 Votes
    2 Posts
    11k Views
    PeterJonesP

    I doubt it’s the programming language (per se) that makes a difference. It’s probably the settings of your particular terminal, whether you are using tabs or spaces for indenting in NPP, and what the receiving application (not PuTTY; whatever program you’re running in the PuTTY terminal) is expecting and set up for. If I run vim on linux thru a PuTTY 0.67 SSH terminal, and paste from Notepad++ into vim with auto-indent turned off, I get exactly what I pasted (if auto-indent is turned on, vim adds extra indenting: this is an example of how settings on the receiving application can affect things).

    debugging questions In Notepad++, what are Settings > Preferences > Languages > Tab Settings > [Default] > Replace by space set to? unchecked (☐) or checked (☑)? What about for Tab Settings > Python? in your existing NPP window, you can turn on View > Show Symbol > Show Whitespace and TAB, and look for a light-colored dot (SPACE) or a light-colored arrow (TAB) at the beginning of the indent lines, to see what the indent is for that specific file. What program are you running in the PuTTY terminal, that you’re trying to paste into? Try an experiment: run plane-jane Windows notepad.exe type in two copies of the example text (below) once indenting using the tab character once indenting using four or eight spaces copy/paste each (one at a time) into the destination program in PuTTY Do they both come out the same (whether both wrong or both right), or is one formatted correctly and the other not if they both are wrong, then it’s likely an issue with either your PuTTY settings or with what the receiving program expects if the tab-indented version comes out wrong, but the space-indented version is right, you’ll want to set NPP to convert TABs to SPACES if the space-indented is wrong but the tab-indented is right (that would surprise me), you want NPP to not convert TABs to spaces if both are right from notepad.exe, but it still pastes wrong from Notepad++, then there’s something magical going on with your copy/paste buffer, and you might want to try loading Notepad++ without any plugins (run notepad++.exe -noPlugin) and copy/paste from NPP again, to see whether some plugin is interfering with the Windows clipboard. example text def getWindDirection(): global lastwinddir ... return while True: print ... other suggestions

    Instead of copy/paste from Windows::Notepad++ to PuTTY::OS::Application, would you be able to use Notepad++'s NppFTP plugin to edit remotely from Windows::Notepad++ to the filesystem on whatever server you’re accessing thru PuTTY? (Or, if you’re used to a standalone FTP/SFTP/… like FileZilla, how about editing on Windows, but then copying to the server using your external FTP program)

  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • Upgraded to ver. 7.2, NppColorPicker plugin is gone.

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Pete NorrisP

    Frank;

    Thanks for the info.

  • Issue uploading files with NppFTP plugin

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied