Is there any shortcut for CodeBlocks to format the

2019-02-11 15:48发布

Is there any shortcut for CodeBlocks to format the code?

I haven't find any tip in google.

I found only "format use AStyle", but it come up with right mouse button only...

2条回答
Rolldiameter
2楼-- · 2019-02-11 16:15

probably not by default but you should be able to assign it there:

Settings -> Editor -> Keyboard shortcuts -> Plugins -> Source code formatter (AStyle)

查看更多
做个烂人
3楼-- · 2019-02-11 16:17

My favourite = Ctrl + A then Ctrl + Shift + F.

You (these are the default settings I believe) can select a block of code and press the Tab key. This will indent the entire block.

So for indenting a whole file: Ctrl + A, then Tab.

In addition, you can use Shift + Tab on a selected block to "unindent"

You can move through the open tabs with Ctrl + Shift + Tab.

As for the best shortcuts:

I like Ctrl + D to duplicate a line and

Ctrl + L to copy it.

Anyway, you can set whatever shortkeys you like in the Editor menu (there you will also be able to find all shortkey currently set).

查看更多
登录 后发表回答