Difference between revisions of "Guru-mode"
Jump to navigation
Jump to search
(Anh con Ta cung nhau nhin nap) |
m (Reverted edits by 37.59.80.67 (talk) to last revision by Bozhidar) |
||
| Line 1: | Line 1: | ||
| − | + | {{Package | |
| + | |name=guru-mode | ||
| + | |description=helps you to use Emacs 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]] | ||
Revision as of 19:41, 24 June 2012
| Description | helps you to use Emacs 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