Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IDLE: Dedenting with Shift+Tab #38066

Open
kamek mannequin opened this issue Feb 27, 2003 · 12 comments
Open

IDLE: Dedenting with Shift+Tab #38066

kamek mannequin opened this issue Feb 27, 2003 · 12 comments
Assignees
Labels
topic-IDLE type-feature A feature request or enhancement

Comments

@kamek
Copy link
Mannequin

kamek mannequin commented Feb 27, 2003

BPO 694339
Nosy @rhettinger, @terryjreedy, @kbkaiser, @serwy, @rovitotv, @mlouielu, @csabella
PRs
  • gh-38066: IDLE: Dedenting with shift+tab #2210
  • Files
  • common_dedent.diff
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = 'https://github.com/terryjreedy'
    closed_at = None
    created_at = <Date 2003-02-27.13:08:54.000>
    labels = ['expert-IDLE', 'type-feature']
    title = 'IDLE: Dedenting with Shift+Tab'
    updated_at = <Date 2017-09-28.06:59:47.992>
    user = 'https://bugs.python.org/kamek'

    bugs.python.org fields:

    activity = <Date 2017-09-28.06:59:47.992>
    actor = 'taleinat'
    assignee = 'terry.reedy'
    closed = False
    closed_date = None
    closer = None
    components = ['IDLE']
    creation = <Date 2003-02-27.13:08:54.000>
    creator = 'kamek'
    dependencies = []
    files = ['13457']
    hgrepos = []
    issue_num = 694339
    keywords = ['patch']
    message_count = 12.0
    messages = ['53784', '53785', '53786', '53787', '53788', '84392', '150059', '212906', '220193', '220197', '296074', '296139']
    nosy_count = 11.0
    nosy_names = ['rhettinger', 'terry.reedy', 'kbk', 'kamek', 'gpolo', 'roger.serwy', 'THRlWiTi', 'Todd.Rovito', 'Sean.Wolfe', 'louielu', 'cheryl.sabella']
    pr_nums = ['2210']
    priority = 'normal'
    resolution = None
    stage = 'test needed'
    status = 'open'
    superseder = None
    type = 'enhancement'
    url = 'https://bugs.python.org/issue694339'
    versions = ['Python 3.6']

    @kamek
    Copy link
    Mannequin Author

    kamek mannequin commented Feb 27, 2003

    IDLE already provides quick block indenting, by
    selecting one or more lines and pressing Tab. So, it
    would make sense to have Shift+Tab to do the opposite
    work. While there's already Alt+[ (and Alt+] to indent),
    Shift+Tab is more intuitive, especially to those who are
    used to other Windows developer tools, like Visual
    Studio or TextPad.

    @kamek kamek mannequin assigned kbkaiser Feb 27, 2003
    @kamek kamek mannequin added topic-IDLE type-feature A feature request or enhancement labels Feb 27, 2003
    @rhettinger
    Copy link
    Contributor

    Logged In: YES
    user_id=80475

    While you get used to it quickly, I've bumped in to this also.
    It is nice to have the control keys work the same across
    applications.

    @kamek
    Copy link
    Mannequin Author

    kamek mannequin commented Jan 1, 2004

    Logged In: YES
    user_id=539453

    This can be considered solved in the newest IDLE versions,
    as you can set custom shortcuts.

    @rhettinger
    Copy link
    Contributor

    Logged In: YES
    user_id=80475

    Evenso, it may be better to have it work right out of the box.

    @kbkaiser
    Copy link
    Contributor

    kbkaiser commented Jan 2, 2004

    Logged In: YES
    user_id=149084

    What I'd really like is smart tabs like python-mode, where a tab
    (re)indents the line to the correct point based on the syntax,
    and a backspace backs up to the previous level.

    Since IDLE already knows how to indent I'm hoping that that
    won't be to difficult to implement.

    @gpolo
    Copy link
    Mannequin

    gpolo mannequin commented Mar 29, 2009

    Patch added for allowing, and defining, Shift-Tab as the default binding
    for dedenting.

    The problem is that dedent-region may do more than one would expect.

    @terryjreedy terryjreedy changed the title Dedenting with Shift+Tab IDLE: Dedenting with Shift+Tab Aug 9, 2010
    @serwy
    Copy link
    Mannequin

    serwy mannequin commented Dec 22, 2011

    I applied the patch and encountered a problem. MultiCall.py is replacing "<Shift-Key-Tab>" with "<Shift-KeyPress-Tab>". When this happens, the logic for rebinding "<<PrevWindow>>" fails.

    event_info('<<PrevWindow>>') returns ('<Key-ISO_Left_Tab>', '<Key-hpBackTab>', '<Shift-Key-Tab>')

    event_info('<<dedent-region>>') returns ('<Control-KeyPress-bracketleft>', '<Shift-KeyPress-Tab>')

    This is with 3.3a0 on Ubuntu 11.04.

    @SeanWolfe
    Copy link
    Mannequin

    SeanWolfe mannequin commented Mar 7, 2014

    I did a couple tests and the shift-tab and tab work pretty much as expected. There's a small quirk for a single-line edit:

    • place cursor on beginning of line
    • tab forward
      --> the text indents as expected
    • shift-tab
      --> the entire line is highlighted
      --> the cursor now appears beneath the line
      --> subsequent typing however affects the highlighted line

    For the single-line case, it would be cleaner to have it stay on the same line without highlighting.

    This is OSX 10.9, python 2.7.6+ and 3.4.rc1+

    @taleinat
    Copy link
    Contributor

    Regarding Roger Serwy's comment, we could either:

    1. normalize the event descriptions using MultiCall's _parse_sequence() and _triplet_to_sequence() functions
    2. remove any Shift-Tab bindings from <<PrevWindow>>

    I suggest #2.

    Regarding the patch itself:

    1. Was the existing default binding of Ctrl-[ removed on purpose in Lib/idlelib/configHandler.py? According to the same patch, in the config files it is still there along-side the new Shift-Tab binding. At the least, these should be consistent.

    2. In the code re-binding the <<Prev-Window>> event in EditorWindow.py, shouldn't there be a "break" at the end of the "if" clause inside the "for" loop?

    @terryjreedy
    Copy link
    Member

    The fact that Tab indents regions as well as lines seems not be documented. This should be added to Automatic Indentation (which should just be Indentation) with BackTab doc addition if not sooner.

    On Windows, 3.4.1, shift-tab is the same as tab. The same is true in Notepad (not a model to follow), but Notepad++ dedents. Doing the same in Idle, within the editor, seems like a reasonable request.

    The unplanned and strange OSX behavior should be fixed.

    From the patch, I would gather that the problem is that tk hard-codes shift-Tab to <<prev-window (and, I would expect, tab to <<next-window>>). (This works but is currently useless in the dialogs.) If that is so, why do they currently act the same (for me) in the editor? Does tk automatically rebind Tab to indent-region in a text widget?

    Tal: option 2 seems like something to try. If Shift-Tab is user configurable (and I think baked-in like Tab would be ok), then it should be *added* in both places. You might be right about break, except this is a moot point if the code is wrong.

    @mlouielu
    Copy link
    Mannequin

    mlouielu mannequin commented Jun 15, 2017

    PR 2210 add the smart-dedent to shift-tab in Windows, macOS, Linux.

    I can't saw <<prev-window>> nor <<next-window>> in 3.7 (master) source code, so I'll take it as removed in IDLE somewhere else.

    @mlouielu mlouielu mannequin added the 3.7 (EOL) end of life label Jun 15, 2017
    @terryjreedy
    Copy link
    Member

    <<PrevWindow>> is a predefined virtual event.
    https://www.tcl.tk/man/tcl8.6/TkCmd/event.htm
    I can't find <<NextWindow>> listed there. I don't remember if I actually saw it before mentioning it. While I like mimicking smart_indent, I don't know if we can dismiss Roger Serwy's concern in msg150059.

    Tk on Ubuntu may report key name ISO_Left_Tab msg150059, but it is not cross-platform. On Win 10 with either tk 8.5.15 (2.7) or 8.6.6 (3.6):
    _tkinter.TclError: bad event type or keysym "ISO_Left_Tab"
    I don't think we need to use the only sometimes valid synonym.

    As Sean Wolfe reported msg212906, Shift-Tab already dedents a single line by treating it as a region. This issue is about removing the extra behavior we don't want, and blocking Control-[ from doing simplefied non-region single line dedents. Smart_indent does this by intercepting Tab (which I believe need not be bound to <<indent-region>>.

    When there is a selection within a line, smart_indent does not call dedent_region but deletes the selection and insert \t or spaces, but in the latter case, the cursor may not be left on a multiple of indent spaces. This does not seem very useful. It is even less so because if the selection is within a word, tab invokes autocomplete instead of smart_indent. This needs discussion on another issue.
    ---

    Text editing tests: how to we do them both thoroughly and efficiently (in terms of both human writing and machine execution time)?

    White box approach: Set up a class test fixture that defines cls.text = <MultiCall(Text) instance>; put text in known state (content, cursor position, selection); call edit function (smart_indent, proposed smart dedent, etc); check resulting state (content, cursor, selection. Repeat for multiple input state - output state pairs. These tests break if the function name is changed and only test the function, which is, however, the main thing to be tested.

    Gray-box approach: Replace function calls with pseudoevents generated on the text widget. Such tests would survive function name changes, break on pseudoevent name changes, and add a test of pseudoevent -- function binding. A black-box approach replaces pseudoevents with concrete events -- simulated key presses, mouse clicks, and menu selections. These tests survive pseudoevent name changes and add a test of concrete -- pseudo event linkage. They should only break if we change the user visible interface, which we seldom do.

    I think we should use all approaches in two sets of tests. The first set would test multiple before and after states in subtests with a function call. This would define and test the intended behavior of the function. The second set would test one before and after state successively with a function call, pseudoevent generation, and concrete event generations, in this order. (If the function call fails, the event tests are bound to fail.) This would test the user interface and the links to the underlying function.

    There are over 30 editing functions to test, and writing the above for all would be tedious. After writing tests for a couple, we should write helper functions that embody the repetitive boilerplate.

    An additional factor: The text edit functions, properly bound with a pseudoevent to the text instance, are not methods of the text instance (though they should be), but of the EditorWindow that also contains a Toplevel; Menu hierarchy; and a Frame that contains Scrollbars and a StatusBar, along with, finally, the MultiCall(Text) instance. So the fixture setup must also provide provide an attribute for the method container. Let us call it cls.widget.

    In order to put EditFrames (a new subclass of Frame) on tabs, the Text methods will have to at least be transferred to the EditFrame. It would be even better to transfer them to an IdleText subclass of MultiCall(Text) or possibly of Text. (See Mark Roseman's suggestion of a MultiCall alternative in msg272070.) After the setup code is changed to assign the new method container to cls.widget, the test methods should still run as they are.

    @terryjreedy terryjreedy removed the 3.7 (EOL) end of life label Jun 16, 2017
    @terryjreedy terryjreedy self-assigned this Jun 16, 2017
    @ezio-melotti ezio-melotti transferred this issue from another repository Apr 9, 2022
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    topic-IDLE type-feature A feature request or enhancement
    Projects
    Status: In Progress
    Development

    No branches or pull requests

    4 participants