Wind IDE簡單設定

2021-06-10 02:11:37 字數 718 閱讀 3325

(1)恢復初始設定。

edit->preferences->factory defaults

(2)py檔案中顯示中文。

edit->preferences->user inte***ce中:

display font/size修改為「use selected font/size:」「simsun 10」。

source code font/size修改為「use selected font/size:」「simsun 10」。

(3)顯示縮排向導線。

edit->preferences->editor->indentation中:

勾選「show indentguides」。

(4)修改tab size為4。

edit->preferences->editor->indentation中:

修改「default tab size」為「4」。

(5)顯示行號。

edit->show line numbers

(6)[前往/去]到某行。

edit->preferences->user inte***ce->keyboard->custom key bindings中:

insert:key為「alt-l」,command為「goto-line」。

因為:windows版中,edit->goto line的「ctrl-l」經常失效(很詭異的說~),所以需要重新進行定義。

SUDO簡單設定

sudo是乙個很有意思的命令 通過設定 可以讓一般使用者擁有部分或全部root使用者的許可權 而這些授權使用者使用sudo執行root許可權才能使用的命令後 會被完整的記錄下操作日誌 簡單設定並使用的方法是 使用root登入系統 找到行root all all all 在下面加入新行 oracle ...

git簡單設定

git是分布式的,因此不存在向使用者詢問姓名和郵件位址的 版本庫。通過命令git config,使用者可以把此類資訊提供給本地版本庫。git中最常用的三個全域性設定是姓名 郵件 視窗顏色。git config global user.name xx git config global user.em...

git的簡單設定

git使用者名稱等的配置通常都用類似於下面的格式 git config global user.name yourname 配置使用者 git config global core.pager less x1,5 配置tab鍵的寬度,寬度為5 1 4,可以自己修改這個值,例如 less x1,3 等...