tree: 1adbcdbbc7ce83b245d99ce785fd4269eb27e993 [path history] [tgz]
  1. fuchsia-common.el
  2. fuchsia-fx.el
  3. fuchsia.el
  4. OWNERS
  5. README.md
scripts/emacs/README.md

Emacs Libraries for Fuchsia Development.

This directory contains scripts for interacting with the Fuchsia source tree.

Utilities

fx and ffx wrappers

fuchsia.el provides wrappers for some of the most common fx commands, such as fx build. Commands are prefixed with fuchsia-, e.g. fuchsia-fx-build.

Notably, executing fuchsia-fx-* with the prefix argument C-u will give fx the -i argument, which runs the given fx command every time a source file changes.

Setup

Vanilla Emacs

A minimal configuration of these tools only requires adding them to your load-path and loading the package. This uses an existing checkout of the Fuchsia source code.

(push "<fuchsia source root>/scripts/emacs" load-path)

(require 'fuchsia)

Doom Emacs

Configuration for Doom Emacs requires adding the below to your ~/.doom.d/ configurations:

(use-package! fuchsia
  :load-path "<fuchsia source root>/scripts/emacs/")