Emacs Prelude

Total Page:16

File Type:pdf, Size:1020Kb

Emacs Prelude 34 views 0 0 RELATED TITLES Bbatsov Prelude Uploaded by Sun Sundiata Bbatsov Prelude Full description Save Embed Share Print Rpm Kickstart Acl Emacs Reference Ros Agitr Letter Productivity Card Tools for 66//2288//2200114 bbbbaattssoovv//pprreelluuddee This repository Search or type a command Explore Gist Blog Help yawo IC bbatsov / prelude Watch 139 Star 1,5 Prelude is an enhanced Emacs 24 distribution that should make your experience with Emacs both more pleasant and more powerful. Code 874 commits 2 2 branches 0 0 releases 67 67 contributors Issues Pull Requests master prelude / Wiki Merge pull request #587 from swhalen/two-quicklisp-dirs … bbatsov authored 3 days ago latest commit 5445a40453 Pulse core Prefer advice over remap exchange-point-and-mark 20 days ago Graphs modules Merge pull request #587 from swhalen/two-quicklisp-dirs 3 days ago personal [Fix #451] Addt hea bility top reloadp ersonalc ode 7m onths ago Network sample AddGo mod ule 24day sago HTTPS clone URL themes restoreda ccidentallyd eletedd irs 2y earsa go https://github.co utils Variousin stall-scriptfi xes 20d aysa go You can clone with or Subversion vendor Don'tu sed ash.eld uringp ackagein it ay eara go .gitignore Ignorepc achedi rectory am onthag o .projectile [Fix #447] Extract ido config into a module 7 months ago CONTRIBUTING.md addedc ontributiong uidelines 2y earsa go README.md Rename buffer not visiting files 24 days ago init.el Add comment documenting load dependency a month ago README.md license GPL 3 tips $11/week Emacs Prelude Prelude is an Emacs distribution that aims to enhance the default Emacs experience. Prelude alters a lot of the default settings, bundles a plethora of additional packages and adds its own core library to the mix. The final product offers an easy to use Emacs configuration for Emacs newcomers and lots of additional power for Emacs power users. Prelude is compatible ONLY with GNU Emacs 24.x. In general you're advised to always run Prelude with the latest Emacs - currently 24.3. Table of Contents Fast Forward Installing Emacs 24 Installation 34 views 0 0 RELATED TITLES Bbatsov Prelude Uploaded by Sun Sundiata Bbatsov Prelude Full description Save Embed Share Print Rpm Kickstart Acl Emacs Reference Ros Agitr Letter Productivity Card Tools for 6/28/2014 bbatsov/prelude Automatic update Enabling additional modules Running Getting to know Prelude Keymap Global Prelude Mode OSX modifier keys Projectile Key-chords Disabling key-chords Automatic package installation Color Themes Personalizing Disabling whitespace-mode Disable flyspell-mode Caveats & Pitfalls Updating bundled packages Problems with flyspell-mode Ugly colors in the terminal Emacs version MELPA error on initial startup No arrow navigation in editor buffers Customized C-a behavior Poor ido matching performance on large datasets Windows compatibility Known issues Support Contributors Bugs & Improvements Fast Forward Assuming you're using an Unix-like OS ( *BSD , GNU/Linux , OS X , Solaris , etc), you already have Emacs 24 installed, as well as git & curl you can skip the whole manual and just type in your favorite shell the following command: curl -L http://git.io/epre | sh You can now power up your Emacs, sit back and enjoy Prelude, forgetting about the rest of this manual. There are two environment variables you can use to control the source repository and the installation directory. To change the installation directory: export PRELUDE_INSTALL_DIR ="$HOME/.emacs.d" && curl -L https://github.com/bbatsov/prelude To change the source repository: export PRELUDE_URL="https://github.com/yourname/prelude.git" && curl -L https://github.co Note that the installer will back up any existing .emacs file or .emacs.d since it will unpack Prelude's code in .emacs.d . If you're doing a manual install make sure you don't have a .emacs file or back up your existing 34 views 0 0 RELATED TITLES Bbatsov Prelude Uploaded by Sun Sundiata Bbatsov Prelude Full description Save Embed Share Print Rpm Kickstart Acl Emacs Reference Ros Agitr Letter Productivity Card Tools for 6/28/2014 bbatsov/prelude Installation Automated You can install Emacs Prelude via the command line with either curl or wget . Naturally git is also required. Via Curl If you're using curl type the following command: curl -L https://github.com/bbatsov/prelude/raw/master/utils/installer.sh | sh Via Wget If you're using wget type: wget --no-check-certificate https://github.com/bbatsov/prelude/raw/master/utils/installer. Manual git clone git://github.com/bbatsov/prelude.git path/to/local/repo ln -s path/to/local/repo ~/.emacs.d cd ~/.emacs.d You'd do well to replace ~/.emacs.d with the value of user-emacs-directory for your OS. You can check the value by doing C-h v user-emacs-directory inside Emacs. Updating Prelude Manual update The update procedure is fairly straightforward and consists of 3 steps: Update all bundled packages Just run M-x package-list-packages RET U x . Update Prelude's code cd path/to/prelude/installation git pull The path/to/prelude/installation is usually ~/.emacs.d (at least on Unix systems). Restart Prelude It's generally a good idea to stop Emacs after you do the update. The next time Prelude starts it will install any new dependencies (if there are such). Automatic update 34 views 0 0 RELATED TITLES Bbatsov Prelude Uploaded by Sun Sundiata Bbatsov Prelude Full description Save Embed Share Print Rpm Kickstart Acl Emacs Reference Ros Agitr Letter Productivity Card Tools for 6/28/2014 bbatsov/prelude (require 'prelude-c) ;; (require 'prelude-clojure) ;; (require 'prelude-coffee) ;; (require 'prelude-common-lisp) ;; (require 'prelude-css) (require 'prelude-emacs-lisp ) (require 'prelude-erc) ;; (require 'prelude-erlang) ;; (require 'prelude-haskell) (require 'prelude-js) ;; (require 'prelude-latex) (require 'prelude-lisp) ;; (require 'prelude-mediawiki) (require 'prelude-org) (require 'prelude-perl) ;; (require 'prelude-python) ;; (require 'prelude-ruby) ;; (require 'prelude-scala) (require 'prelude-scheme) ;; (require 'prelude-scss) ;; (require 'prelude-web) (require 'prelude-xml) You'll need to adjust your prelude-modules.el file once the installation is done. If you are doing a manual install then you first need to copy the prelude-modules.el available in the sample directory to the root of path/to/prelude/installation and then adjust that one. After you've uncommented a module you should either restart Emacs or evaluate the module require expression with C-x C-e . Running Nothing fancy here. Just start Emacs as usual. Personally I run Emacs in daemon mode: emacs --daemon Afterwards I connect to the server with either a terminal or a GUI client like this: emacsclient -t emacsclient -c You'd probably do well to put a few aliases in your .zshrc (or .bashrc ): alias e='emacsclient -t' alias ec='emacsclient -c' alias vim='emacsclient -t' alias vi='emacsclient -t' The last two aliases are helpful if you're used to editing files from the command line using vi(m) . Getting to know Prelude Certainly the best way to understand how Prelude enhances the default Emacs experience is to peruse Prelude's source code (which is obviously written in Emacs Lisp). Understanding the code is not necessary of course. Prelude includes a prelude-mode minor Emacs mode which collects some of the additional functionality added by Prelude. It also adds an additional keymap that binds many of those extensions to keybindings. 34 views 0 0 RELATED TITLES Bbatsov Prelude Uploaded by Sun Sundiata Bbatsov Prelude Full description Save Embed Share Print Rpm Kickstart Acl Emacs Reference Ros Agitr Letter Productivity Card Tools for 34 views 0 0 RELATED TITLES Bbatsov Prelude Uploaded by Sun Sundiata Bbatsov Prelude Full description Save Embed Share Print Rpm Kickstart Acl Emacs Reference Ros Agitr Letter Productivity Card Tools for 6/28/2014 bbatsov/prelude C-c r Rename the current buffer and its visiting file if any. C-c t Open a terminal emulator ( ansi-term ). C-c k Kill all open buffers except the one you're currently in. C-c TAB Indent and copy region to clipboard C-c h Open Helm (available if you've enabled the prelude-helm module). C-c I Open user's init file. C-c S Open shell's init file. C-c . + Increment integer at point. Default is +1. C-c . - Decrement integer at point. Default is -1. C-c . * Multiply integer at point. Default is *2. C-c . / Divide integer at point. Default is /2. C-c . </kbd> Modulo integer at point. Default is modulo 2. C-c . ^ Power to the integer at point. Default is ^2. C-c . < Left-shift integer at point. Default is 1 position to the left. C-c . > Right-shift integer at point. Default is 1 position to the right. C-c . # Convert integer at point to specified base. Default is 10. C-c . % Replace integer at point with another specified integer. Perform arithmetic operations on integer at point. User specifies the C-c . ' operator. Super-r Recent files Super-x Expand region Super-j Join lines Super-k Kill whole line Super-m m Magit status Super-m l Magit log Super-m f Magit file log Super-m b Magit blame mode Note: For various arithmetic operations, the prefix C-c . only needs to be pressed once for the first operation. For subsequent operations, only the appropriate operations (i.e. + , - , * , / ... needs to be pressed). OSX modifier keys Prelude does not mess by default with the standard mapping of Command (to Super ) and Option (to Meta ). If you want to swap them add this to your personal config: (setq mac-command-modifier 'meta) 34 views 0 0 RELATED TITLES Bbatsov Prelude Uploaded by Sun Sundiata Bbatsov Prelude Full description Save Embed Share Print Rpm Kickstart Acl Emacs Reference Ros Agitr Letter Productivity Card Tools for 6/28/2014 bbatsov/prelude C-c p f Display a list of all files in the project.
Recommended publications
  • Bringing GNU Emacs to Native Code
    Bringing GNU Emacs to Native Code Andrea Corallo Luca Nassi Nicola Manca [email protected] [email protected] [email protected] CNR-SPIN Genoa, Italy ABSTRACT such a long-standing project. Although this makes it didactic, some Emacs Lisp (Elisp) is the Lisp dialect used by the Emacs text editor limitations prevent the current implementation of Emacs Lisp to family. GNU Emacs can currently execute Elisp code either inter- be appealing for broader use. In this context, performance issues preted or byte-interpreted after it has been compiled to byte-code. represent the main bottleneck, which can be broken down in three In this work we discuss the implementation of an optimizing com- main sub-problems: piler approach for Elisp targeting native code. The native compiler • lack of true multi-threading support, employs the byte-compiler’s internal representation as input and • garbage collection speed, exploits libgccjit to achieve code generation using the GNU Com- • code execution speed. piler Collection (GCC) infrastructure. Generated executables are From now on we will focus on the last of these issues, which con- stored as binary files and can be loaded and unloaded dynamically. stitutes the topic of this work. Most of the functionality of the compiler is written in Elisp itself, The current implementation traditionally approaches the prob- including several optimization passes, paired with a C back-end lem of code execution speed in two ways: to interface with the GNU Emacs core and libgccjit. Though still a work in progress, our implementation is able to bootstrap a func- • Implementing a large number of performance-sensitive prim- tional Emacs and compile all lexically scoped Elisp files, including itive functions (also known as subr) in C.
    [Show full text]
  • GNU Emacs Manual
    GNU Emacs Manual GNU Emacs Manual Sixteenth Edition, Updated for Emacs Version 22.1. Richard Stallman This is the Sixteenth edition of the GNU Emacs Manual, updated for Emacs version 22.1. Copyright c 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with the Invariant Sections being \The GNU Manifesto," \Distribution" and \GNU GENERAL PUBLIC LICENSE," with the Front-Cover texts being \A GNU Manual," and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled \GNU Free Documentation License." (a) The FSF's Back-Cover Text is: \You have freedom to copy and modify this GNU Manual, like GNU software. Copies published by the Free Software Foundation raise funds for GNU development." Published by the Free Software Foundation 51 Franklin Street, Fifth Floor Boston, MA 02110-1301 USA ISBN 1-882114-86-8 Cover art by Etienne Suvasa. i Short Contents Preface ::::::::::::::::::::::::::::::::::::::::::::::::: 1 Distribution ::::::::::::::::::::::::::::::::::::::::::::: 2 Introduction ::::::::::::::::::::::::::::::::::::::::::::: 5 1 The Organization of the Screen :::::::::::::::::::::::::: 6 2 Characters, Keys and Commands ::::::::::::::::::::::: 11 3 Entering and Exiting Emacs ::::::::::::::::::::::::::: 15 4 Basic Editing
    [Show full text]
  • Emacspeak User's Guide
    Emacspeak User's Guide Jennifer Jobst Revision History Revision 1.3 July 24,2002 Revised by: SDS Updated the maintainer of this document to Sharon Snider, corrected links, and converted to HTML Revision 1.2 December 3, 2001 Revised by: JEJ Changed license to GFDL Revision 1.1 November 12, 2001 Revised by: JEJ Revision 1.0 DRAFT October 19, 2001 Revised by: JEJ This document helps Emacspeak users become familiar with Emacs as an audio desktop and provides tutorials on many common tasks and the Emacs applications available to perform those tasks. Emacspeak User's Guide Table of Contents 1. Legal Notice.....................................................................................................................................................1 2. Introduction.....................................................................................................................................................2 2.1. What is Emacspeak?.........................................................................................................................2 2.2. About this tutorial.............................................................................................................................2 3. Before you begin..............................................................................................................................................3 3.1. Getting started with Emacs and Emacspeak.....................................................................................3 3.2. Emacs Command Conventions.........................................................................................................3
    [Show full text]
  • Emacs Speaks Statistics (ESS): a Multi-Platform, Multi-Package Intelligent Environment for Statistical Analysis
    Emacs Speaks Statistics (ESS): A multi-platform, multi-package intelligent environment for statistical analysis A.J. Rossini Richard M. Heiberger Rodney A. Sparapani Martin Machler¨ Kurt Hornik ∗ Date: 2003/10/22 17:34:04 Revision: 1.255 Abstract Computer programming is an important component of statistics research and data analysis. This skill is necessary for using sophisticated statistical packages as well as for writing custom software for data analysis. Emacs Speaks Statistics (ESS) provides an intelligent and consistent interface between the user and software. ESS interfaces with SAS, S-PLUS, R, and other statistics packages under the Unix, Microsoft Windows, and Apple Mac operating systems. ESS extends the Emacs text editor and uses its many features to streamline the creation and use of statistical software. ESS understands the syntax for each data analysis language it works with and provides consistent display and editing features across packages. ESS assists in the interactive or batch execution by the statistics packages of statements written in their languages. Some statistics packages can be run as a subprocess of Emacs, allowing the user to work directly from the editor and thereby retain a consistent and constant look- and-feel. We discuss how ESS works and how it increases statistical programming efficiency. Keywords: Data Analysis, Programming, S, SAS, S-PLUS, R, XLISPSTAT,STATA, BUGS, Open Source Software, Cross-platform User Interface. ∗A.J. Rossini is Research Assistant Professor in the Department of Biostatistics, University of Washington and Joint Assis- tant Member at the Fred Hutchinson Cancer Research Center, Seattle, WA, USA mailto:[email protected]; Richard M.
    [Show full text]
  • Free As in Freedom (2.0): Richard Stallman and the Free Software Revolution
    Free as in Freedom (2.0): Richard Stallman and the Free Software Revolution Sam Williams Second edition revisions by Richard M. Stallman i This is Free as in Freedom 2.0: Richard Stallman and the Free Soft- ware Revolution, a revision of Free as in Freedom: Richard Stallman's Crusade for Free Software. Copyright c 2002, 2010 Sam Williams Copyright c 2010 Richard M. Stallman Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled \GNU Free Documentation License." Published by the Free Software Foundation 51 Franklin St., Fifth Floor Boston, MA 02110-1335 USA ISBN: 9780983159216 The cover photograph of Richard Stallman is by Peter Hinely. The PDP-10 photograph in Chapter 7 is by Rodney Brooks. The photo- graph of St. IGNUcius in Chapter 8 is by Stian Eikeland. Contents Foreword by Richard M. Stallmanv Preface by Sam Williams vii 1 For Want of a Printer1 2 2001: A Hacker's Odyssey 13 3 A Portrait of the Hacker as a Young Man 25 4 Impeach God 37 5 Puddle of Freedom 59 6 The Emacs Commune 77 7 A Stark Moral Choice 89 8 St. Ignucius 109 9 The GNU General Public License 123 10 GNU/Linux 145 iii iv CONTENTS 11 Open Source 159 12 A Brief Journey through Hacker Hell 175 13 Continuing the Fight 181 Epilogue from Sam Williams: Crushing Loneliness 193 Appendix A { Hack, Hackers, and Hacking 209 Appendix B { GNU Free Documentation License 217 Foreword by Richard M.
    [Show full text]
  • Learning GNU Emacs Other Resources from O’Reilly
    Learning GNU Emacs Other Resources from O’Reilly Related titles Unix in a Nutshell sed and awk Learning the vi Editor Essential CVS GNU Emacs Pocket Reference Version Control with Subversion oreilly.com oreilly.com is more than a complete catalog of O’Reilly books. You’ll also find links to news, events, articles, weblogs, sample chapters, and code examples. oreillynet.com is the essential portal for developers interested in open and emerging technologies, including new platforms, pro- gramming languages, and operating systems. Conferences O’Reilly brings diverse innovators together to nurture the ideas that spark revolutionary industries. We specialize in document- ing the latest tools and systems, translating the innovator’s knowledge into useful skills for those in the trenches. Visit con- ferences.oreilly.com for our upcoming events. Safari Bookshelf (safari.oreilly.com) is the premier online refer- ence library for programmers and IT professionals. Conduct searches across more than 1,000 books. Subscribers can zero in on answers to time-critical questions in a matter of seconds. Read the books on your Bookshelf from cover to cover or sim- ply flip to the page you need. Try it today with a free trial. THIRD EDITION Learning GNU Emacs Debra Cameron, James Elliott, Marc Loy, Eric Raymond, and Bill Rosenblatt Beijing • Cambridge • Farnham • Köln • Paris • Sebastopol • Taipei • Tokyo Learning GNU Emacs, Third Edition by Debra Cameron, James Elliott, Marc Loy, Eric Raymond, and Bill Rosenblatt Copyright © 2005 O’Reilly Media, Inc. All rights reserved. Printed in the United States of America. Published by O’Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472.
    [Show full text]
  • Using and Porting the GNU Compiler Collection
    Using and Porting the GNU Compiler Collection Richard M. Stallman Last updated 14 June 2001 for gcc-3.0 Copyright c 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. For GCC Version 3.0 Published by the Free Software Foundation 59 Temple Place - Suite 330 Boston, MA 02111-1307, USA Last printed April, 1998. Printed copies are available for $50 each. ISBN 1-882114-37-X Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with the Invariant Sections being “GNU General Public License”, the Front-Cover texts being (a) (see below), and with the Back-Cover Texts being (b) (see below). A copy of the license is included in the section entitled “GNU Free Documentation License”. (a) The FSF’s Front-Cover Text is: A GNU Manual (b) The FSF’s Back-Cover Text is: You have freedom to copy and modify this GNU Manual, like GNU software. Copies published by the Free Software Foundation raise funds for GNU development. Short Contents Introduction......................................... 1 1 Compile C, C++, Objective C, Fortran, Java ............... 3 2 Language Standards Supported by GCC .................. 5 3 GCC Command Options ............................. 7 4 Installing GNU CC ............................... 111 5 Extensions to the C Language Family .................. 121 6 Extensions to the C++ Language ...................... 165 7 GNU Objective-C runtime features .................... 175 8 gcov: a Test Coverage Program ...................... 181 9 Known Causes of Trouble with GCC ................... 187 10 Reporting Bugs.................................
    [Show full text]
  • Installation and User's Guide
    GNUstep Installation and User’s Guide Version 0.6.5 February 8, 2000 Permissions Copyright (C) 1999-2000 Free Software Foundation. Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided also that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions. Apple™, OpenStep™, and the Apple logo are trademarks of Apple Computers, Inc. registered in the U.S. and other countries. PostScript™, Display PostScript™ and Adobe™ are trademarks of Adobe Systems Incorporated and may be registered in certain jurisdictions. Other company and product names mentioned herein might be trademarks of their respective companies. About the Free Software Foundation The Free Software Foundation (FSF) is dedicated to eliminating restrictions on copying, redistribution, understanding, and modification of computer programs. We do this by promoting the development and use of free software in all areas of computing---but most particularly, by helping to develop the GNU operating system. Many organizations distribute whatever free software happens to be available. In contrast, the Free Software Foundation concentrates on development of new free software---and on making that software into a coherent system that can eliminate the need to use proprietary software. Besides developing GNU, FSF distributes copies of GNU software and manuals for a distribution fee, and accepts tax-deductible gifts to support GNU development.
    [Show full text]
  • Learning the Bash Shell, 3Rd Edition
    1 Learning the bash Shell, 3rd Edition Table of Contents 2 Preface bash Versions Summary of bash Features Intended Audience Code Examples Chapter Summary Conventions Used in This Handbook We'd Like to Hear from You Using Code Examples Safari Enabled Acknowledgments for the First Edition Acknowledgments for the Second Edition Acknowledgments for the Third Edition 1. bash Basics 3 1.1. What Is a Shell? 1.2. Scope of This Book 1.3. History of UNIX Shells 1.3.1. The Bourne Again Shell 1.3.2. Features of bash 1.4. Getting bash 1.5. Interactive Shell Use 1.5.1. Commands, Arguments, and Options 1.6. Files 1.6.1. Directories 1.6.2. Filenames, Wildcards, and Pathname Expansion 1.6.3. Brace Expansion 1.7. Input and Output 1.7.1. Standard I/O 1.7.2. I/O Redirection 1.7.3. Pipelines 1.8. Background Jobs 1.8.1. Background I/O 1.8.2. Background Jobs and Priorities 1.9. Special Characters and Quoting 1.9.1. Quoting 1.9.2. Backslash-Escaping 1.9.3. Quoting Quotation Marks 1.9.4. Continuing Lines 1.9.5. Control Keys 4 1.10. Help 2. Command-Line Editing 2.1. Enabling Command-Line Editing 2.2. The History List 2.3. emacs Editing Mode 2.3.1. Basic Commands 2.3.2. Word Commands 2.3.3. Line Commands 2.3.4. Moving Around in the History List 2.3.5. Textual Completion 2.3.6. Miscellaneous Commands 2.4. vi Editing Mode 2.4.1.
    [Show full text]
  • TEX Documents with AUCTEX in Emacs
    Writing (LA)TEX documents with AUCTEX in Emacs David Kastrup dak (at) gnu dot org Abstract At the time of the abstract deadline, several pretest versions of Emacs 22 have been made available, and the final release is even more imminent than the last few years. However, most GNU/Linux distributions already have made developer versions of Emacs available as snapshots. Users meeting their typesetting needs mostly withLATEX will profit from moving to such versions from the rather an- cient Emacs 21.4 because of extensive improvements of the provided desktop and editing environment. A number of newly supported version control systems, thumbnail-supported browsing of directories with graphics files, considerably improved Unicode sup- port for editing, desktop interaction and input, syntax highlighting activated by default, new ports for Windows, Mac OS X and GTK+ using the native toolkits for graphic support and toolbars and providing a native, well integrated look for those desktop environments, transparent access to files accessible with su, sudo, ssh and other shell accounts: those provide, among numerous improved details and fixes, quite a bit of progress for using Emacs as a work environment. Focusing on the creation of LATEX documents, the AUCTEX editing package maintained by the speaker is the most extensively used editing solution for TEX and Emacs, providing previewed material integrated into the source code window with preview-latex, support of source specials and the pdfsync package for lowe- ring the barrier between source code and final output, and delivering a number of ways for formatting and organizing the source code. Syntax highlighting and folding of various constructs and comments render source code more managea- ble.
    [Show full text]
  • Editor War - Wikipedia, the Free Encyclopedia Editor War from Wikipedia, the Free Encyclopedia
    11/20/13 Editor war - Wikipedia, the free encyclopedia Editor war From Wikipedia, the free encyclopedia Editor war is the common name for the rivalry between users of the vi and Emacs text editors. The rivalry has become a lasting part of hacker culture and the free software community. Many flame wars have been fought between groups insisting that their editor of choice is the paragon of editing perfection, and insulting the others. Unlike the related battles over operating systems, programming languages, and even source code indent style, choice of editor usually only affects oneself. Contents 1 Differences between vi and Emacs 1.1 Benefits of vi-like editors 1.2 Benefits of Emacs 2 Humor 3 Current state of the editor war 4 See also 5 Notes 6 References 7 External links Differences between vi and Emacs The most important differences between vi and Emacs are presented in the following table: en.wikipedia.org/wiki/Editor_war 1/6 11/20/13 Editor war - Wikipedia, the free encyclopedia vi Emacs Emacs commands are key combinations for which modifier keys vi editing retains each permutation of typed keys. are held down while other keys are Keystroke This creates a path in the decision tree which pressed; a command gets executed execution unambiguously identifies any command. once completely typed. This still forms a decision tree of commands, but not one of individual keystrokes. Historically, vi is a smaller and faster program, but Emacs takes longer to start up (even with less capacity for customization. The vim compared to vim) and requires more version of vi has evolved to provide significantly memory.
    [Show full text]
  • ESS — Emacs Speaks Statistics
    ESS | Emacs Speaks Statistics ESS version 5.3.6 The ESS Developers (A.J. Rossini, R.M. Heiberger, K. Hornik, M. Maechler, R.A. Sparapani and S.J. Eglen) Current Documentation by The ESS Developers Copyright c 2002{2006 The ESS Developers Copyright c 1996{2001 A.J. Rossini Original Documentation by David M. Smith Copyright c 1992{1995 David M. Smith Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Chapter 1: Introduction to ESS 1 1 Introduction to ESS The S family (S, Splus and R) and SAS statistical analysis packages provide sophisticated statistical and graphical routines for manipulating data. Emacs Speaks Statistics (ESS) is based on the merger of two pre-cursors, S-mode and SAS-mode, which provided support for the S family and SAS respectively. Later on, Stata-mode was also incorporated. ESS provides a common, generic, and useful interface, through emacs, to many statistical packages. It currently supports the S family, SAS, BUGS, Stata and XLisp-Stat with the level of support roughly in that order. A bit of notation before we begin. emacs refers to both GNU Emacs by the Free Software Foundation, as well as XEmacs by the XEmacs Project. The emacs major mode ESS[language], where language can take values such as S, SAS, or XLS.
    [Show full text]