Python 包管理工具 pip
Summary: Author: 张亚飞 | Read Time: 2 minute read | Published: 2017-09-26
Filed under
—
Categories:
Linux
—
Tags:
Note,
idea 2016 注册服务器 [](http://www.iteblog.com/idea/key.php)
修改 PHPStorm 选中变量高亮所有相同变量
Go into Settings->IDE Settings->Editor->Color and Fonts->General
Make a copy of Darcula to something like MyOwnDarcula (can’t change the built in schema).
Find whatever you need to change, in this case I think it’s “Identifier under caret” and change the colors for foreground and background to your liking.
- Highlighting Usages
- How to change usage highlight color in IntelliJ IDEA
- Change color of similar word in PHPStorm
Mac OS 调整 PhpStorm 运行内存
用的是 mac osx,编辑 phpstorm 的启动配置文件,其他平台根据情况选择:
vim /Applications/PhpStorm.app/Contents/bin/phpstorm.vmoptions
修改参数,根据具体需要修改即可
-Xms512m˜
-Xmx2048m
-XX:MaxPermSize=350m
-XX:ReservedCodeCacheSize=240m
-XX:+UseCompressedOops
搭建 Intellij 开发工具 注册服务器
cd ~/Server/Run/docs/Tools/idea
sudo ./IntelliJIDEALicenseServer_linux_amd64
./IntelliJIDEALicenseServer_linux_amd64 -p {portNum}运行IntelliJIDEALicenseServer_linux_amd64这个程序并且指定监听端口为{portNum}(自己填端口号)
添加到开机启动项
sudo vi /etc/rc.local
# 自动开启Intelli 验证服务器 http://idea.iirii.com:1017
# http://blog.lanyus.com/archives/174.html
sudo data/home/coam/Server/Run/docs/Tools/idea/IntelliJIDEALicenseServer_linux_amd64
Comments