emacs-006-行號模式的開啟與關閉
emacs內建了乙個行號模式,可以顯示游標所在的行的行號。可以通過line-number-mode命令進行開關的切換。
以上是行號模式沒開啟的時候。
上面是通過line-number-mode開啟後出現的提示與效果。
上面是從開啟到關閉切換你的時候出現的提示。
如果要在啟動的時候開啟或者關閉,可以使用.emacs檔案進行指定配置。
開啟方式:(setq line-number-mode t)
關閉方式:(setq line-number-mode nil)
我自己的配置中設定了功能的常開,目前的emacs配置檔案內容如下:
(custom-set-variables
;;custom-set-variables was added by custom.
;;if you edit it by hand, you could mess it up, so be careful.
;;your init file should contain only one such instance.
;;if there is more than one, they won't work right.
(custom-set-faces
;;custom-set-faces was added by custom.
;;if you edit it by hand, you could mess it up, so be careful.
;;your init file should contain only one such instance.
;;if there is more than one, they won't work right.
'(default ((t (:family "courier new":foundry "outline" :slant normal :weight normal :height 98 :widthnormal)))))
;; disable files backup function
(setq make-backup-files nil)
(setq line-number-mode t)
Emacs學習階段小結 Emacs常用快捷鍵總結
首先推薦一下emacs自帶的emacs tutorial,跟著這個做一邊,兩三個小時,基本的使用就能掌握了。之後的神教程就有很多了,比如 sams.teach.yourself.emacs.in.24.hours 這本書就蠻吊的。之後說一下,windows裡面的emacs和linux裡面的區別是有的...
00 公共方法
運算子 python表示式 結果描述 支援的資料型別 1,2 3,4 1,2,3,4 合併字串 列表 元組 hi 4 hi hi hi hi 複製字串 列表 元組 in3in 1,2,3 true 元素是否存在 字串 列表 元組 字典 not in 4 not in 1,2,3 true 元素是否不...
Emacs使用概覽
游標控制 c v alt v 上下移動一頁 c n p 上下移動行 c f b 前後移動一字元 alt f b 前後移動一單詞 c a e 移動到行首和尾 alt a e 移動到句首和尾 c u digit cmd 連續執行 c g 取消鍵入命令 文字編輯文字複製 c 選擇起點,點游標移動到終點,m...