prompt-toolkit / python-prompt-toolkit

Library for building powerful interactive command line applications in Python
https://python-prompt-toolkit.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
9.11k stars 717 forks source link

feat(keymap): add indent/dedent in insert mode #1780

Closed liljaylj closed 8 months ago

liljaylj commented 10 months ago

ctrl-t to indent in insert mode ctrl-d to dedent in insert mode

also, this commit place cursor after indent/dedent in the same place in the text instead of placing it at the beginning of the line.

jonathanslenders commented 8 months ago

Thanks!

jonathanslenders commented 8 months ago

@liljaylj : I just noticed that there is still a bug. If there is no indentation left before the current line, pressing c-d will start moving the cursor to the left.