一叫倍、安裝
版本24.4
how to set XLIB_SKIP_ARGB_VISUALS=1 for specific applications
GTK bug:
- 修改寸莫,使命令輸入
emacs
正常打開
You can try adding these lines in your.bashrc
file:
alias emacs='XLIB_SKIP_ARGB_VISUALS=1 emacs'
- 修改快捷方式部宿,使單擊圖標(biāo)正常打開
- make a local copy of the emacs .desktop launcher
cp /usr/share/applications/emacs24.desktop ~/.local/share/applications/
- edit the copy, changing
Exec=/usr/bin/emacs24 %F
to
Exec=/usr/bin/env XLIB_SKIP_ARGB_VISUALS=1 /usr/bin/emacs24 %F
版本24.3
二、插件管理
安裝的插件
-
markdown-preview-mode
在瀏覽器預(yù)覽markdown
markdown-preview-eww.el
插件配置
- 啟用 markdown 預(yù)覽
如出現(xiàn)/bin/bash: /usr/local/bin/markdown: No such file or directory
安裝markdown 渲染插件 Pandoc
或者sudo apt-get install python-markdown
向 Emacs 配置文件添加路徑
(custom-set-variables
'(markdown-command "/usr/bin/pandoc"))
卸載插件
- The command
package-menu-mark-delete
- (key 'd')
- followed by package-menu-execute (key 'x') worked for me.
三、操作技巧
ibuffer
-
C-x C-b
進(jìn)入 ibuffer 模式 -
^
返回上層目錄 -
C-x C-q
進(jìn)入編輯模式 -
C-x C-s
保存并進(jìn)入命令模式 - 命令模式下
-
d
標(biāo)記為待刪除 -
x
執(zhí)行命令
-
光標(biāo)移動(dòng)
-
C-M-b
跳到對(duì)應(yīng)括號(hào) -
C-M-n
將光標(biāo)移動(dòng)到對(duì)應(yīng)的右大括號(hào) -
C-M-SPC
選中匹配括號(hào)包括的所有內(nèi)容(光標(biāo)停留在匹配括號(hào)處)。
選擇
-
capsLock
大寫鎖定煤裙,從光標(biāo)處開始選擇
連接FTP服務(wù)器
- 進(jìn)入
Dire
- 輸入
ftp:name@host:
- 提示輸入密碼
- 連接成功!
分屏
C-x 3 水平拆分窗口
代碼格式化
1蟹地、如果想要整理整個(gè)文件
M-x mark-whole-buffer 或者 C-x h //選中整個(gè)文件
M-x indent-region 或者 C-M-\ //格式化選中
2积暖、只是整理某個(gè)函數(shù)
M-x mark-defun 或者 C-M-h //選中函數(shù)
M-x indent-region 或者 C-M-\ //格式化
四、卸載
- 徹底卸載
sudo apt-get purge emacsen-common emacs24-common emacs24-bin-common emacs24 xemacs21-mule xemacs21 xemacs21-support gettext-el emacs xemacs21-bin
- 清除所有
sudo apt-get update
sudo apt-get autoremove
sudo apt-get autoclean