How do I horizontally scroll in Notepad++?

16,429

Solution 1

How to horizontally scroll in Notepad++?

You can scroll horizontally in Notepad++ the same way(s) you scroll horizontally in any other program. A convenient way

I know the way by dragging horizontal scroll bar, but I would like more convenient way.

It depends on what you consider convenient, but there are a few options.

Scrolling with keyboard

You can usually use the Left and Right keys in combination with some modifiers in most programs. For example, Ctrl+Left/Right usually scrolls all the way or one interval. Also, PageUp and PageDown can usually be combined with Ctrl to scroll one interval horizontally instead of vertically. The same goes for Home and End (which typically scroll to the beginning or end of a line).

In the case of Notepad++ specifically, it doesn’t seem to support any of these by keyboard or via mouse. Unfortunately, even the Shortcut Mapper doesn’t seem to have any horizontal-scrolling items that can be mapped to a hotkey. You could look for a plugin, but there is an easier way:

Universal Solution

Scrolling with mouse wheel while holding Shift key pressed.

Some programs support this intrinsically and some mouse drivers/software supports it, but you easily set it up manually with AutoHotkey.

The AutoHotkey documentation already has a convenient script that lets you scroll horizontally by holding a modifier key and turning the mouse-wheel (reproduced here with Shift instead of LControl):

~Shift & WheelUp::  ; Scroll left
  ControlGetFocus, fcontrol, A
  Loop 2  ; <-- Increase this value to scroll faster.
    SendMessage, 0x114, 0, 0, %fcontrol%, A  ; 0x114=WM_HSCROLL; 0=SB_LINELEFT
return

~Shift & WheelDown::  ; Scroll right
  ControlGetFocus, fcontrol, A
  Loop 2  ; <-- Increase this value to scroll faster.
    SendMessage, 0x114, 1, 0, %fcontrol%, A  ; 0x114=WM_HSCROLL; 1=SB_LINERIGHT
return

You can customize and extend the script as needed; for example, you can add keyboard hotkeys, modify the scroll amount, etc.

I have lots of long lines in logs files. And I need to scroll very fast both ways: horizontally and vertically.

You can create multiple hotkeys as above to scroll a little, a medium amount, or a lot to suit your needs. You can even compile your script and run it as a background program.

Solution 2

As of at least Jan. 1, 2019 (possibly sooner), the feature of horizontal scrolling by holding down Shift + scrolling with the mouse wheel has been added.

Simply update to the most recent version of Notepad++ on your computer. The feature will be enabled by default. You can download the latest version of Notepad++ here: https://notepad-plus-plus.org/download/

(Source: https://github.com/notepad-plus-plus/notepad-plus-plus/pull/5184)

Solution 3

I was also looking for convenient option to scroll horizontally, what worked for me is to right click on scroll arrow, and click on "Page Left" or "Page Right" to move 1 page left or right respectively.

Left Edge and Right Edge also useful to provide similar function that of Home or End.

Solution 4

  1. My mouse (Logitex RX 250) supports vertical scrolling by tapping the mousewheel to the left and right

  2. in the menu option "view" you can activate the "wrap" option. this will wrap long lines so that vertical scrolling won't be necessary because anything that would leave the window is being wraped and written under the line.

  3. Holding "ctrl" key and then holding right will go to the right jumping from word to word.

Share:
16,429

Related videos on Youtube

ViliusK
Author by

ViliusK

Android developer, Playgong co-founder. SOreadytohelp

Updated on September 18, 2022

Comments

  • ViliusK
    ViliusK almost 2 years

    How to horizontally scroll in Notepad++? I know the way by dragging horizontal scroll bar, but I would like more convenient way:

    1. Scrolling with keyboard

    2. Scrolling with mouse wheel while holding Shift key pressed.

    I have lots of long lines in logs files. And I need to scroll very fast both ways: horizontally and vertically.

    • Admin
      Admin over 5 years
      there is finally a fix to N++ for this. if we're lucky, it should be included in the next build.
  • ViliusK
    ViliusK about 13 years
    1. I have Logitech too, and I like to keep mouse wheel tapping to sides mapped to "Go Back" and "Go Forward". 2. I want my lines to be unwrapped, because it's very long LOGS lines, I want to see all lines beginnings lined up. 3. Words are not always same length and it happens, that it can jump more to the right, than it fits into the screen if there would be a very long "word". Sometimes it happens. 4. I don't want to zoom out either.
  • JiangBin
    JiangBin about 13 years
    there also are some gesture programs you can use to make a gesture like holding right mouse button and swiping to the right what makes 50 taps on the right arrow key in the current activated window. i think the program i once used for gestures is called "strokeit"
  • JiangBin
    JiangBin about 13 years
    @ViliusK did anything of this help?
  • ViliusK
    ViliusK about 13 years
    None of above are good. Macro is not good as well, because not all lines are same length. So if I would use a macro which goes 50 symbols to the right it might jump to next line and go to the beginning of line.
  • bnieland
    bnieland almost 9 years
    I have had this mouse for years, and never knew about #1 above. Very handy!
  • alexmelyon
    alexmelyon over 7 years
    Scrolling with mouse wheel while holding Shift key pressed. doesn't works for me :(
  • walen
    walen over 6 years
    So you start claiming that "You can scroll horizontally in Notepad++ the same way(s) you scroll horizontally in any other program", then go on and explain some of those ways that "You can usually use (...) in most programs", just to end up saying that "Notepad++ specifically, doesn’t seem to support any of these". So clearly you can NOT scroll horizontally in Notepad++ the same way(s) you scroll horizontally in any other program. OP was right to ask, and your first, condescending and factually wrong paragraph should be removed from the answer.
  • Edza
    Edza over 6 years
    Thanks a ton for the autohotkey script. I have to scroll all the time at work horizontally.
  • bsplosion
    bsplosion over 4 years
    For those wondering, Notepad++ has this enabled by default as of version 7.7.1 (here's the commit for the curious).