Menu

#252 Proposal - option to remove horizontal scrollbar in source editor window

Undefined
open
nobody
Feature_Request
2015-11-18
2015-11-12
Kevin xy
No

I propose adding an option to remove horizontal scrollbar in the source editor window. It would save a lot on screen estate on a laptop. In most cases, horizontal scrollbar is unnecessary (a user can use end key and cursor key to move to end of the line)
This option exists in Visual Studio 2008 - 2015).

Discussion

  • Ben Bowen

    Ben Bowen - 2015-11-17

    Good suggestion.

     
  • ollydbg

    ollydbg - 2015-11-18
    • labels: --> Editor, SDK
     
  • ollydbg

    ollydbg - 2015-11-18

    This is the needed SCI_SETHSCROLLBAR API: Scintilla Documentation

     
  • ollydbg

    ollydbg - 2015-11-18
    // Show or hide the horizontal scroll bar.
    void wxScintilla::SetUseHorizontalScrollBar(bool show)
    {
        SendMsg(SCI_SETHSCROLLBAR, show, 0);
    }
    

    Or, use this function in wxScintilla.

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.