msg54533 - (view) |
Author: Michael Foord (michael.foord) * |
Date: 2005-05-24 09:08 |
IDLE comes without a horizontal (bottom) scroll bar. In
general this is preferable, but there are times when it's a
nuisance.
It would be nice to have an option (easily accessible) to
switch this on.
|
msg54534 - (view) |
Author: Kurt B. Kaiser (kbk) * |
Date: 2005-05-26 15:48 |
Logged In: YES
user_id=149084
IDLE is intended to present a simple interface to
beginners and to encourage good style. I believe that
GvR made a deliberate decision not to have a horiz
scroll bar to discourage lines longer that 80 char.
If you want to code a patch, I'd accept it. However,
the config switch should be in config-main.def only, and
the selection should not appear on the Options dialog.
That way an experienced user could set it in
.idlerc/config-main.cfg
|
msg164436 - (view) |
Author: Terry J. Reedy (terry.reedy) * |
Date: 2012-07-01 00:01 |
#15141, which I will close as a duplicate, makes the same request (for the edit window). Roger Serwy notes that his extension package
http://idlex.sourceforge.net/extensions.html
has horizontal.py, which does what is requested. He is willing for that (or other) extension(s) to be bundled with idle for default or optional activation. I presume that is done in some .cfg file. I re-opened for that purpose.
(Note: it would seem nice to be able to get a list of extensions available and those enabled from the menu. Or is there a reason not too?)
Some arguments for h. scroll:
1. The shell window is a print output as well as code input window. Output should not necessarily be limited to 80 chars. With variable pitch font, that does not even make much sense.
2. Edit windows are not limited to python code. Else they would *always* syntax hilight. Or Pycode might be embedded in other formats. If #6858 were implemented, h scroll would be more useful.
3. Not everyone agrees with the 80 char limits.
4. People sometimes edit a file written by someone else.
Counter-arguments:
1. A full screen window allows about 200 chars or more, which is enough for any code entry and most print output and most 'files written by someone else'.
2. For exceptions, put cursor on long line and use => arrow key.
|
msg164446 - (view) |
Author: Roger Serwy (roger.serwy) * |
Date: 2012-07-01 03:18 |
I wrote Horizontal.py as an extension in order to avoid forking IDLE. It
should be simple to incorporate a toggling horizontal scroll bar within
the EditorWindow class itself.
> (Note: it would seem nice to be able to get a list of extensions available and those enabled from the menu. Or is there a reason not too?)
IdleX provides a dialog for enabling and disabling extensions.
The shell window has wrapping enabled on its text widget. A horizontal
bar is not needed there.
> 2. Edit windows are not limited to python code. Else they would *always* syntax hilight. Or Pycode might be embedded in other formats. If #6858 were implemented, h scroll would be more useful.
True. The Editor window does not wrap, which is why the horizontal bar
is needed there.
> 3. Not everyone agrees with the 80 char limits.
The limit does make printing code simpler, however. But that's a
separate discussion.
> 4. People sometimes edit a file written by someone else.
Yes, and often times it is one or two lines in the file that extend
beyond the right border of the editor.
> Counter-arguments:
> 1. A full screen window allows about 200 chars or more, which is enough for any code entry and most print output and most 'files written by someone else'.
I shouldn't have to resize the editor to see its contents.
> 2. For exceptions, put cursor on long line and use => arrow key.
>
> ----------
> nosy: +serwy, terry.reedy
> resolution: rejected ->
> status: closed -> open
> versions: +Python 3.4
>
> _______________________________________
> Python tracker<report@bugs.python.org>
> <http://bugs.python.org/issue1207613>
> _______________________________________
>
|
msg228302 - (view) |
Author: Terry J. Reedy (terry.reedy) * |
Date: 2014-10-03 03:41 |
patch to be pulled from idlex
|
msg291301 - (view) |
Author: Terry J. Reedy (terry.reedy) * |
Date: 2017-04-07 22:03 |
I don't like telling people to hand-edit .idlerc files. It causes too many problems. We added Extensions tab to avoid this. I think all supported options should be on dialog.
Windows are resizable and accommodate lines up to current width. Default width is user settable option. So people who want to edit 100 char lines for code can and have editor open with 100 char width.
Shell,Edit, and Output windows should not necessarily be same. Currently, Shell wraps both input and output while Editor Output truncate code input and grep output respectively. I plan to review this, including possible scrollbar, but not a priority.
|
msg295332 - (view) |
Author: Cheryl Sabella (cheryl.sabella) * |
Date: 2017-06-07 11:52 |
I hope you don't mind that I made a change for this. I was working with 'Find in files' and couldn't see the full line, so I figured out where to add the scroll bar. I only found this ticket after the fact.
If it's not appropriate, I can withdraw the PR.
|
msg295374 - (view) |
Author: Terry J. Reedy (terry.reedy) * |
Date: 2017-06-07 21:51 |
Output Window definitely needs a scrollbar available on screens where it cannot be stretched to 160 chars or so. Thinking about it, if one greps idlelib in a local install, with a url something like C:/users/somename/appdata/local/python/lib/idlelib/*.py, one only needs 100 chars to pick up the idlelib file name and code, but needs the scrollbar to display the last 100 chars instead of the first 100 chars.
To add to msg16443: the fact that one can stretch the window much wider than 80 chars means that omitting a scrollbar does not enforce an 80-char limit.
|
msg352888 - (view) |
Author: Terry J. Reedy (terry.reedy) * |
Date: 2019-09-20 20:52 |
A horizontal text bar is added to a text view as needed (recent patch) when one is used for the font sample. The latter fits or not according to the font size. The same could be used for editor, or better, editor windows could inherit from text views.
|
msg362669 - (view) |
Author: Terry J. Reedy (terry.reedy) * |
Date: 2020-02-25 22:39 |
Some IDLE users really want a horizontal scrollbar (for the editor), and even consider its absence to be a reason to not use it.
Stackoverflow 2012: https://stackoverflow.com/questions/10301071/is-there-a-horizontal-scroll-bar-in-pythons-idle
Reddit 2020: https://stackoverflow.com/questions/10301071/is-there-a-horizontal-scroll-bar-in-pythons-idle
This was brought to my attention by Steven D'Aprano and specifically compare the IDLE editor to other editors.
I have decided to not wait until a possible major refactoring to add this feature. The patch needs several revisions (see review).
I neglected to mention above (msg352888) that the scrollbar added to the font sample box is a Scrollbar subclass, textview.AutoHideScrollbar, that only appears when needed. After experimenting with editing the font sample, I think we can just add this with no option to disable it.
Since editor windows already allow lines longer than the window width and already have horizontal scrolling by cursor motion, such as by Home, End, and Left and Right arrow keys, adding a horizontal scrollbar makes scrolling easier, but does not really change editor window behavior. The disappearance of the scrollbar when a long line is sufficiently shortened makes it easier to determine when one has shortened a line enough to meet the window width as a limit, if one wishes.
The shell is a different issue. It wraps at the window width, just like standard interactive Python (as least on Windows with Command Prompt and macOS with Terminal). I think something like the following is better wrapped. If nothing else, copying to paste is easier ;-).
>>> 2**1024
179769313486231590772930519078902473361797697894230657273430081157732675805500963132708477322407536021120113879871393357658789768814416622492847430639474124377767893424865485276302219601246094119453082952085005768838150682342462881473913110540827237163350510684586298239947245938479716304835356329624224137216
So, at least for now, no hbar for Shell.
|
msg377227 - (view) |
Author: Tal Einat (taleinat) * |
Date: 2020-09-20 18:38 |
We've run into a significant technical hurdle in trying to implement a horizontal scrollbar: The Tk text widget sets the horizontal scroll position only according to the currently visible lines! If the text was scrolled to the right, scrolling down to where there are only shorter lines will scroll the text back to the left!!
Implementing this will require either getting a fix for this into Tk itself, or finding a good workaround.
The workaround I was considering--wrapping the text widget with a frame and implementing custom scrolling logic--is very unlikely to provide reasonable performance with large files. This is because it will have to have all of the text widget rendered at all times, which the Tk Text widget takes special care to avoid in order to achieve good performance.
|
msg388479 - (view) |
Author: Terry J. Reedy (terry.reedy) * |
Date: 2021-03-11 06:23 |
Request in #43467 closed as duplicate of this.
|
|
Date |
User |
Action |
Args |
2022-04-11 14:56:11 | admin | set | github: 42010 |
2022-03-25 17:31:26 | python-dev | set | keywords:
+ patch nosy:
+ python-dev
pull_requests:
+ pull_request30193 stage: needs patch -> patch review |
2021-03-11 06:23:00 | terry.reedy | set | messages:
+ msg388479 |
2021-03-11 06:21:28 | terry.reedy | link | issue43467 superseder |
2020-09-20 18:38:53 | taleinat | set | nosy:
+ taleinat messages:
+ msg377227
|
2020-02-28 11:40:24 | steven.daprano | set | nosy:
+ steven.daprano
|
2020-02-25 22:39:04 | terry.reedy | set | messages:
+ msg362669 |
2019-09-20 20:52:20 | terry.reedy | set | nosy:
- kbk, roger.serwy
messages:
+ msg352888 versions:
+ Python 3.9, - Python 2.7, Python 3.4, Python 3.5, Python 3.6 |
2017-06-23 02:23:39 | terry.reedy | link | issue30016 superseder |
2017-06-07 21:51:45 | terry.reedy | set | messages:
+ msg295374 |
2017-06-07 11:52:17 | cheryl.sabella | set | nosy:
+ cheryl.sabella messages:
+ msg295332
|
2017-06-07 11:49:41 | cheryl.sabella | set | pull_requests:
+ pull_request2050 |
2017-04-07 22:03:06 | terry.reedy | set | assignee: terry.reedy messages:
+ msg291301 |
2015-08-07 02:05:16 | terry.reedy | set | title: Bottom Scroll Bar in IDLE -> Idle Editor: Bottom Scroll Bar versions:
+ Python 3.6 |
2014-10-03 03:41:22 | terry.reedy | set | assignee: kbk -> (no value) versions:
+ Python 2.7, Python 3.5 |
2014-10-03 03:41:05 | terry.reedy | set | messages:
+ msg228302 stage: needs patch |
2013-03-26 09:07:37 | Ramchandra Apte | set | title: Bottom Scroll Bar -> Bottom Scroll Bar in IDLE |
2013-03-25 03:00:45 | Todd.Rovito | set | nosy:
+ Todd.Rovito
|
2012-07-01 03:18:21 | roger.serwy | set | messages:
+ msg164446 |
2012-07-01 00:02:49 | terry.reedy | link | issue15141 superseder |
2012-07-01 00:01:48 | terry.reedy | set | status: closed -> open versions:
+ Python 3.4 nosy:
+ terry.reedy, roger.serwy
messages:
+ msg164436
resolution: rejected -> |
2005-05-24 09:08:33 | mjfoord | create | |