More emacs mode compatibility
I am a long time emacs user and have just recently gotten a
copy of pycharm for python development.
I use a lot of the emacs rectangle operations; specifically:
prefix each line with a string (C-x r t)
I also use the C-x b operation to move between the emacs buffers.
Is there a similar operation hidden deep in menus of pycharm?
Please sign in to leave a comment.
For moving between buffers, you can use Ctrl-Tab. To get an equivalent of "prefix each line with a string", you can use column selection (Column Selection Mode in the context menu), select a block of 0 width and as many lines as you need, and then type the string. Or, if the string is #, simply use Code | Comment with Line Comment.