41

GitHub - freetonik/castlemacs: Modern, minimalist Emacs for macOS ⌘

 5 years ago
source link: https://github.com/freetonik/castlemacs
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

README.org

Castlemacs: modern, minimalist Emacs for macOS ⌘

https://img.shields.io/github/tag/freetonik/castlemacs.svg?label=release&style=flat-square https://img.shields.io/badge/license-MIT-green.svg?style=flat-square

./screenshots/main2.png


Quick Start | Changelog


Features

  • Compatibility with common macOS keybindings
  • Ergonomic keybindings that follow simple, sensible rules
  • Easy windows management and movement
  • Easy movement between points in the file and between files
  • Multiple cursors, project manager, Git front end, file tree, terminal
  • Handy spellchecker, built-in thesaurus and word definition lookup
  • A handful of tiny, useful helper functions

Quick Start

brew install the_silver_searcher aspell
mv ~/.emacs.d ~/.emacs.d.bak
git clone https://github.com/freetonik/castlemacs ~/.emacs.d

Table of Contents

Intro

Emacs is an extensible, customizable text editor a framework for creating any text editor you want. The goal of Castlemacs is to build a simple, modern and minimalist Emacs setup tailored to macOS while following these

Core principles

  1. Be beginner-friendly. Anyone should be able to start using Castlemacs just like they can start using VS Code, Sublime, etc.
  2. Respect macOS. Common system-wide keybindings work as you expect.
  3. Respect Emacs. Never break vanilla Emacs compatibility. Always provide a way to go “full Emacs” if user so desires.
  4. No layers of complexity. No custom configuration layers, no DSL, nothing new. Simple init.el, packages installed and configured via use-package.
  5. Go minimal when possible. For example, use lightweight avy instead of full-featured Helm.

FAQ

Is Castlemacs compatible with non-macOS systems? Yes! Nothing binds Castlemacs to macOS except for some conventions. As long as you have some key on your keyboard that can play a role of Super (e.g. windows key), you’re good to go.

I don’t know Emacs. Can I use Castlemacs or is it hard?. You don’t need to know Emacs, but it will help. The goal of this project is to make a setup that is suitable for absolute beginners.

Is this similar to Spacemacs? No. Spacemacs is a big, custom distribution with additional layers on top of Emacs. Castlemacs is simply a pre-configured Emacs. You don’t need to learn anything new if you know your way around Emacs.

Will Castlemacs support <something>? Probably, unless it goes against the Core Principles. Feel free to open an issue.

Does this setup work well in the terminal? It works, but it is not built for terminal use, since one of the Core Principles is to behave like a native macOS application.

Why is it called Castlemacs? See Why this name?

Installation

Install Emacs

Best option: download the binary from here. Here is the direct link to download version 26.1-mac-7.1, which is the latest version as of today (Sep 19, 2018).

Unzip and move the file to Applications, just like any other mac app.

Alternative option 1: Install Emacs via brew. This will build Emacs from source. It might take some time and can possibly fail.

brew tap railwaycat/emacsmacport
brew install emacs-mac

Alternative option 2: Install Emacs via brew cask.

brew tap railwaycat/emacsmacport
brew cask install emacs-mac

Why not “official” build?

A canonical version of Emacs for macOS can be found at https://emacsformacosx.com/. However, this version has a number of disadvantages:

  • Due to some build options related to graphics, certain extensions like Powerline produce incorrect colors (RGB space issue)
  • No emoji support (if you’re into this kind of stuff)
  • No sub-pixel smooth scrolling
  • No native support for org-protocol

Install dependencies

Castlemacs relies on The Silver Searcher to quickly search within a project. Install it:

brew install the_silver_searcher

Castlemacs requires aspell, a Free and Open Source spell checker. Install it:

brew install aspell

Install Castlemacs

Backup current Emacs config (if exists), then clone Castlemacs from Github:

mv ~/.emacs.d ~/.emacs.d.bak
git clone https://github.com/freetonik/castlemacs ~/.emacs.d

Launch Emacs and wait for several minutes. On the first launch it will download and install packages. When it’s done and the status line in the bottom stops outputting text, restart Emacs.

Don’t worry about warning messages on the first launch, they will go away after first restart.

Setup keyboard

I highly recommend changing Caps Lock to Control by going to System Preferences → Keyboard → Modifier Keys. This way you will have a more comfortable Control under your left pinky.

Usage

Modifier keys

Castlemacs takes advantage of two facts:

  1. Command key is used in macOS for all major system shortcuts, so users have muscle memory;
  2. Emacs recognizes a Super key, but almost never uses it by default.

So, Command key becomes Super

NameOn Mac keyboardEmacs keySuperCommand ⌘sMetaLeft Alt ⌥MControlControl ⌃C

In this document we’ll refer to keys with their common macOS names: Cmd, Alt, Ctrl.

Basics

Basic combinations with Command work as expected.

BindingDescriptionEmacs defaultEscapeCancel current actionC-gCmd-zUndoc-_Cmd-Shift-zRedoN/ACmd-sSave fileC-x C-sCmd-Shift-sSave file asC-x C-wCmd-oOpen fileC-x C-fCmd-aSelect whole bufferC-x hCmd-qQuit EmacsC-x C-cCmd-Shift-pOpen command paletteM-xCtrl-x cOpen config fileN/A

Navigation

Basic movement

Buttons I, J, K, L form a natural alternative to arrow keys. You can move around by holding Cmd while using these keys, without leaving the home row (press Cmd with your right thumb).

(See http://tonsky.me/blog/cursor-keys/ for some background and motivation.)

BindingDescriptionEmacs defaultAlternativeCmd-iGo upC-pArrow UPCmd-kGo downC-nArrow DOWNCmd-jGo leftC-bArrow LEFTCmd-lGo rightC-fArrow RIGHT

Moving text

Hold Alt to move current line up or down. This is sometimes called “bubbling”.

BindingDescriptionAlt-UPMove line upAlt-DOWNMove line down

Simple jumping within text

Cmd or Fn with arrows work just like everywhere else in macOS. Holding Shift selects the region under movement.

BindingDescriptionEmacs defaultCmd-LEFTBeginning of line†C-aCmd-RIGHTEnd of lineC-eCmd-UPBeginning of bufferM-<Cmd-DOWNEnd of bufferM->Fn-UPPage upC-vFn-DOWNPage downM-vFn-Alt-UPPage up other windowC-M-vFn-Alt-DOWNPage down other windowC-M-S-v

† “Beginning of line” is a smart command. It moves cursor to the first non-whitespace character. Press it again, and it moves cursor to the real beginning of line. You can keep pressing it to jump cursor between those two positions.

Smart jumping within buffer and between buffers

Many commands in Emacs write the current position into a mark ring. For example, if you were editing line 6, then performed a search with Cmd+f, did something and want to come back, press Cmd+,= to go back to line 6. =Cmd+. to go forward.

BindingDescriptionEmacs defaultCmd-⸴Go to prev. markC-u SPCCmd-.Go to next markN/ACmd-<Go to prev. bufferC-x LEFTCmd->Go to next bufferC-x RIGHT

Holding Shift ‘lifts’ the meaning of this movement, and instead of jumping to a previous/next position in the current buffer, it jumps to a previous/next buffer in current window.

Search and replace

BindingDescriptionEmacs defaultCmd-fSearch in fileC-sCmd-rVisual replaceN/ACmd-Alt-fVisual replaceN/A

./screenshots/replace.png

Editing

Words and lines

BindingDescriptionEmacs defaultCmd-RETNew line belowN/ACmd-Shift-RETNew line aboveN/ACmd-/Comment lineC-x C-;Cmd-jJoin with next line or join all lines in regionN/AAlt-uUpcase current word or regionM-u (same)Alt-lDowncase current word or regionM-l (same)Alt-cCapitalize wordM-c (same)

Deleting text

BindingDescriptionEmacs defaultAlt-BACKSPACEDelete word backwardsN/AAlt-Shift-BACKSPACEDelete word forwardsM-dCmd-BACKSPACEDelete current lineN/ACtrl-kDelete to end of lineCtrl-kCtrl-dDelete characterCtrl-d

Multiple cursors

BindingDescriptionCmd-dSelect next occurrence†Cmd-Shift-dSelect all occurrencesAlt-Cmd-dAdd cursor to each line in region

† When no text is selected, Cmd-d adds new cursor to the next line.

While multiple cursors are active:

BindingDescriptionC-g or ESCQuit multiple cursors modeCtrl-’Hide/show lines where cursors are activeCtrl-v and Alt-vScroll the screen to center on each cursor

Learn about all features of multiple cursors at https://github.com/magnars/multiple-cursors.el

Indentation

Emacs is pretty good at indenting stuff automatically. Pressing TAB on a line or region will indent it as needed. Castlemacs assumes that we never use tabs, only spaces, and use 2 spaces by default in most languages.

BindingDescriptionTABIndent current line or region correctlyC-x TABRigidly change indentation of line or region

Region

Command with apostrophe expands selection. Holding shift contracts it.

BindingDescriptionCmd-’Expand regionCmd-Shift-’Contract region

Window Management

Note that in Emacs-talk, a pane is called a window.

Splitting windows

These bindings are based on default Emacs conventions, but save you one keypress. Also, Cmd-w closes current window just like a browser tab.

BindingDescriptionEmacs defaultCmd-1Kill other windowsC-x 1Cmd-2Split horizontallyC-x 2Cmd-3Split verticallyC-x 3Cmd-0Kill current windowC-x 0Cmd-wKill current windowC-x 0

Moving between windows

Move left and right just like in iTerm. Hold shift to make it up and down.

BindingDescriptionAlternativeCmd-[Move leftCtrl-Cmd-LEFTCmd-]Move rightCtrl-Cmd-RIGHTCmd-Shift-[Move upCtrl-Cmd-UPCmd-Shift-]Move downCtrl-Cmd-DOWN

Restoring window configuration

This is winner-mode. It captures the current window configuration and allows you to restore it after it gets changed by some Emacs action.

BindingDescriptionEmacs defaultCmd-Alt-[Restore previous configurationC-c LEFTCmd-Alt-]Go to next configuration (undo restore)C-c RIGHT

Project Management

Castlemacs uses Projectile for project management. There are a lot of features, and most of them are discoverable from the so-called “command map”.

BindingDescriptionEmacs defaultCtrl-Cmd-pOpen projectile command mapC-c pCtrl-Cmd-p pSwitch projectC-c p pCmd-pFind file in projectC-c p fCmd-Shift-fSearch in projectC-c p s s

Note that ‘Emacs default’ doesn’t make much sense in this context, since Projectile is not part of Emacs. I try to provide commonly used combinations for these cases: C-c p is what Projectile’s author suggests, for example, and many configs follow this suggestion.

While in search mode:

BindingDescriptionCtrl-Alt-mPreview current fileCtrl-Alt-nNext file and previewCtrl-Alt-pPrevious file and previewESCQuit search

Git

Git gutter

Changes to the current file are shown in the gutter on left side. You can change the appearance of those symbols: search for git-gutter section in init.el. To see a list of all available colors run Alt-x counsel-colors-emacs. See Git-gutter docs for more info.

./screenshots/git_gutter.png

Magit

Castlemacs uses Magit, a wonderful package that aspires to be a complete Git porcelain.

BindingDescriptionCmd-gMagit status

From this status window you can do everything. Here are the basic commands available within Magit status window:

BindingDescriptionsStage current file or chunkcOpen commit windowFOpen pull windowPOpen push window

There are cheat sheets available within Magit. Refer to Magit User Manuals for more info.

Terminal (shell)

There is a toggleable popup shell which is actually a full blown terminal emulator (ansi-term). It uses your system default shell and loads the appropriate environment.

BindingDescriptionCmd-=Toggle shell

File tree and open buffers

BindingDescriptionCmd-bSwitch to another buffer or open recent fileCmd-Shift-b-=Toggle filetree

Programming

Languages and modes

Emacs supports many programming languages by default. Castlemacs adds support for YAML, Markdown, Web mode (HTML, CSS, PHP, templating, etc), Emmet.

Feel free to add more features by sending a PR or opening an issue.

Code completion

Code completion popup shows up immediately when possible. When popup is active:

BindingDescriptionEnterSelect current candidateAlt-DIGITQuickly complete with one of first 10TABComplete common partF1Show documentation for selected candidateCtrl-wShow source for selected candidate

Note that not all backends support the last two commands.

This feature is provided by Company mode package. Learn more about Company mode at http://company-mode.github.io/

Emmet

BindingDescriptionCtrl-Enter or Ctrl-jExpand Emmet

Learn more about emmet mode.

Spellchecking, thesaurus, definition

Spellchecking

Spellchecking requires an external command to be available. See Install dependencies.

BindingDescriptionEmacs defaultCmd-\Correct current word via popupN/ACmd-Ctlr-\Correct current word via listM-$

The last three lines in the popup allow to add current word to your personal dictionary or accept it as correct for current session (as long as Emacs is open) or current buffer.

When correcting via list, you can press i to quickly add the word to your personal dictionary.

Note that personal dictionary is located at ~/.aspell.LANG.pws by default.

Thesaurus

You can quickly search for synonyms. This requires an internet connection since the package uses https://www.powerthesaurus.org/ as backend.

BindingDescriptionCmd-Shift-\Search for synonyms of current word

Select a synonym and press Enter to replace word.

./screenshots/thesaurus.png

Word definition

This requires an internet connection.

BindingDescriptionAlt-\Define current word

./screenshots/word_definition.png

Org mode

Org mode is for keeping notes, maintaining TODO lists, planning projects, and authoring documents with a fast and effective plain-text system. Learn more about Org at https://orgmode.org/. (Caution! This is a black hole!)

Castlemacs provides some nice defaults:

  • Visually indent sections
  • Tab in source blocks acts like in corresponding major mode
  • Code highlighting works in code blocks
  • When TODO changes state, history goes to logbook
  • When TODO becomes DONE, current time and date are recorded
  • Shift selection with arrows work (unless you’re in a spot where Org mode’s default actions kick in)

Put your org files in ~/org. If you use Dropbox or similar cloud provider, I suggest storing your actual org folder there, and providing a symlink like so:

ln -s ~/Dropbox/Org ~/org

Org agenda looks inside all the files in ~/org

Why this name?

Castlemacs takes advantage of the heavily used Command key on macOS. The Command key icon ⌘ is a ‘looped square’: it’s known as the place of interest sign when used on information signs, a practice which started in Finland in the 1950s, spreading to the other Nordic countries in the 1960s.

The symbol is derived from a shape of a castle. Here, for example, is the Borgholm Castle in Sweden:

./images/borgholm-castle.jpg

./images/roadsign.jpg


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK