Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/caiorss/emacs-elisp-programming
Tutorial about programming Elisp and Emacs text editor customization.
https://github.com/caiorss/emacs-elisp-programming
customization dev elisp emacs example lisp programming tutorial utils
Last synced: 3 days ago
JSON representation
Tutorial about programming Elisp and Emacs text editor customization.
- Host: GitHub
- URL: https://github.com/caiorss/emacs-elisp-programming
- Owner: caiorss
- License: unlicense
- Created: 2015-06-26T12:53:28.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-10-29T19:47:55.000Z (about 3 years ago)
- Last Synced: 2025-01-11T19:09:50.521Z (10 days ago)
- Topics: customization, dev, elisp, emacs, example, lisp, programming, tutorial, utils
- Language: CSS
- Homepage: http://caiorss.github.io/Emacs-Elisp-Programming
- Size: 12.1 MB
- Stars: 669
- Watchers: 46
- Forks: 88
- Open Issues: 7
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
# -*- mode: org; -*-
#+INCLUDE: theme/style.org
#+TITLE: Emacs In a Box
#+KEYWORDS: emacs, elisp, lisp, programming, eshell, editor, org-mode
#+STARTUP: content
#+DESCRIPTION: Emacs in self-contained box!* Emacs - Elisp Programming and Customization
** Overview# [[file:images/emacs_logo.png][file:images/emacs_logo.png]]
Emacs doesn't need any presentation. Emacs is a software [[https://en.wikipedia.org/wiki/Lisp_machine]["Lisp
Machine"]] that provides a programmable text editor, email reader, text
web browser, image viwer, calculator, shell, games, easter-eggs and
more. Emacs is programmed in Elisp, an Emacs own lisp dialect that is
based on [[https://en.wikipedia.org/wiki/Maclisp][MacLisp]], one of oldest lisp dialects, older than Common Lisp
and Scheme, created in MIT. Emacs was written in 1976 by the legendary
[[https://en.wikipedia.org/wiki/Richard_Stallman][Richard Stallman]]. Despite many incompatibilities with Common Lisp it
has many constructs similar to it and n excellent book about Common
Lisp that is also useful to understand Elisp and Scheme is [[http://unintelligible.org/onlisp/onlisp.html][On Lisp - by Paul Graham]].*Repository Link*
- [[https://github.com/caiorss/Emacs-Elisp-Programming][Github Repository]]
- Short Link: http://tinyurl.com/emacsinabox - Mneumonic: *Emacs In A Box*
- [[http://caiorss.github.io/Emacs-Elisp-Programming][HTML Version - github.io]]Note:
- It is a work in progress.
- You can see this document inside Emacs since it was converted to
org-mode, see the file *README.org*. It can also be exported to
html, pdf, github markdown and so on.*Configuration File*
The user configuration file, which is executed when Emacs starts, is stored in the directory
=~/.emacs.d/init.el= or =~/.emacs=. The first one is better because it
is in the same directory of all emacs configuration files.The Emacs scratch buffer can be used to test new features and try
Emacs codes along with IELM - Emacs Lisp interactive shell.*Emacs Features*
- Run in GUI or in terminal.
- Programmable "text editor" (Lisp Machine)
- Support to many programming languages
- Can run shells and interpreters inside Emacs.
- Highly customizable
- Easy task automation
- Package manager
- Multiple OS support
- Remote file editting through ssh. (Tramp mode)
- Keyboard macros
- Utilities
- Calculator
- Eshell
- Tramp-mode - Edit remote files and edit as super user (sudo).
- Shells
- File manager (dired-mode)
- Git interface (magit)*Objectives*
- Increase Emacs API discoverability;
- Empower Emacs users to create their own extensions and
customization;- Provide self-contained working examples about Emacs API and Elisp
programming.- Unleash all Emacs potentials.
** Contents
*** Elisp Programing- [[file:Elisp_Programming.org][Elisp Programming]] Elisp programming guide and documentation by examples.
- [[file:Elisp_Snippets.org][Elisp Snippets]] Elisp code examples grouped by category.
*** Key bindings / shortcuts
- [[file:Keybindings.org][Emacs Key bindings]] Emacs standard keybindings and useful commands.
- [[file:Emacs_Key_Bindings_Elisp.org][Emacs key bindings for Elisp]] Emacs key bindings and commands for
Elisp (Emacs' lisp) development.*** Settings and Packages
- [[file:Customization.org][Customization]] Emacs settings and customization.
- [[file:Packages.org][Packages and Development Environments]] Useful Emacs packages and
Programming language specific configurations and packages.*** Emacs Utilities
- [[file:Utilities.org][Utilities]] Emacs utilities and goodness like Calculator, Magit, Helm and so on.
- [[file:Org-Mode.org][Org-mode]] Org-mode notes.
- [[file:Org-mode-recipes.org][Org-mode recipes]] - Org-mode literate programming recipes.
*** Miscellaneous
- [[file:Command_Line_and_Scripting.org][Command Line and Scripting]] Command line interaction with Emacs.
- [[file:Eshell.org][Eshell]] Eshell - Multi-platform unix shell written in Elisp highly
integrated with Emacs and with several platform independent shell
commands such as ls, pwd, cp, mv implemented in Elisp.- [[file:Emacs_On_Windows.org][Emacs on Microsoft Windows]] Emacs settings for Microsoft Windows OS.
- [[file:Bookmarks.org][Bookmarks]] - Emacs bookmarks to Wikis, tutorials, videos, codes and
etc.** TODO Future Work
- [ ] Comint Mode / interacting with REPLs and subprocesses
- [ ] Network API - Interacting with servers.
- [ ] Add cross references
- [ ] Emacs Widget Interfaces and Emacs User Interfaces
- [ ] Add more examples about org-mode API.
- [X] Add a better layout.
** Downloading it
*Download manually*
- https://github.com/caiorss/Emacs-Elisp-Programming/archive/gh-pages.zip
*Automated download*
#+BEGIN_SRC sh
curl -L https://github.com/caiorss/Emacs-Elisp-Programming/archive/gh-pages.zip -o elisp.zip
unzip -e elisp.zip
rm -rf elisp.zip
mv Emacs-Elisp-Programming-gh-pages Emacs-Elisp-Programming
firefox Emacs-Elisp-Programming/index.html &
#+END_SRCView the extracted repository contents:
#+BEGIN_SRC sh
$ ls Emacs-Elisp-Programming/
images/ Elisp_Snippets2.org index.html
theme/ Elisp_Snippets.html Keybindings.html
Customization.html Elisp_Snippets.org Keybindings.org
Customization.org Emacs_Key_Bindings_Elisp.html README.org
Development_Environment.html Emacs_Key_Bindings_Elisp.org Resources.html
Development_Environment.org Emacs_On_Windows.html Resources.org
Elisp_Programming.html Emacs_On_Windows.org Utilities.html
Elisp_Programming.org Eshell.html Utilities.org
Elisp_Snippets2.html Eshell.org
#+END_SRC