Difference between revisions of "Guru-mode"
Jump to navigation
Jump to search
(Anh con Ta cung nhau nhin nap) |
(add category) |
||
| (2 intermediate revisions by one other user not shown) | |||
| Line 1: | Line 1: | ||
| − | + | {{Package | |
| + | |name=guru-mode | ||
| + | |description=a minor-mode that helps you to use Emacs more effectively | ||
| + | |author=[[User:Bozhidar | Bozhidar Batsov]] | ||
| + | |maintainer=[[User:Bozhidar | Bozhidar Batsov]] | ||
| + | |source=https://github.com/bbatsov/guru-mode | ||
| + | }} | ||
| + | |||
| + | '''guru-mode''' disables some common keybindings and suggests the use of the established Emacs alternatives instead. | ||
| + | |||
| + | == Basic setup == | ||
| + | |||
| + | <source lang="lisp"> | ||
| + | (add-to-list 'load-path "/path/to/guru-mode/directory") | ||
| + | (require 'guru-mode) | ||
| + | (guru-mode +1) ;; to enable in all buffers | ||
| + | </source> | ||
| + | |||
| + | == Helpful keybindings == | ||
| + | |||
| + | == Common Customization == | ||
| + | |||
| + | == See Also == | ||
| + | |||
| + | * [[Prelude]] | ||
| + | |||
| + | == Project Pages == | ||
| + | * [https://github.com/bbatsov/guru-mode GitHub Repo] | ||
| + | |||
| + | == Tutorial Pages == | ||
| + | |||
| + | [[Category:Convenience]][[Category:Third Party Package]] | ||
| + | |||
| + | [[Category:Expert]] | ||
Latest revision as of 09:36, 16 May 2017
| Description | a minor-mode that helps you to use Emacs more effectively |
|---|---|
| Author | Bozhidar Batsov |
| Maintainer | Bozhidar Batsov |
| Source | https://github.com/bbatsov/guru-mode |
guru-mode disables some common keybindings and suggests the use of the established Emacs alternatives instead.
Basic setup
(add-to-list 'load-path "/path/to/guru-mode/directory")
(require 'guru-mode)
(guru-mode +1) ;; to enable in all buffers