pycahrm 基础设置

一些常用设置:

1. pycharm默认是自动保存的,习惯自己按ctrl + s 的可以进行如下设置:
1. file -> Setting -> General -> Synchronization -> Save files on frame deactivation 和 Save files automatically if application is idle for .. sec 的勾去掉
2. file ->Setting -> Editor -> Editor Tabs -> Mark modified tabs with asterisk 打上勾
2. Alt + Enter: 自动添加包

3. 对于常用的快捷键,可以设置为visual studio(eclipse...)一样的:
file -> Setting -> Keymap -> Keymaps -> vuisual studio -> Apply

4. Pycharm中默认是不能用Ctrl+滚轮改变字体大小的,可以在file -> Setting ->Editor-〉Mouse中设置

5. 要设置Pycharm的字体,要先在file -> Setting ->Editor-〉Editor中选择一种风格并保存,然后才可以改变

6. 在setting中搜索theme可以改变主题,所有配色统一改变

7.pycharm打印显示不全  加上这代码

idea.max.intellisense.filesize = 200000
idea.max.content.load.filesize = 200000
idea.cycle.buffer.size = 200000

 

原文地址:https://www.cnblogs.com/yoyo1216/p/10132027.html