-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfuel.el
27 lines (19 loc) · 851 Bytes
/
fuel.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
;;; fuel.el --- Factor's Ultimate Emacs Library. -*- lexical-binding: t -*-
;; Copyright (C) 2008, 2009, 2010 Jose Antonio Ortega Ruiz
;; See https://factorcode.org/license.txt for BSD license.
;; SPDX-License-Identifier: BSD-2-Clause
;; Author: Jose Antonio Ortega Ruiz <[email protected]>
;; Keywords: languages, fuel, factor
;; Package-Requires: ((cl-lib "0.2") (emacs "24.2"))
;; Start date: Sat Dec 06, 2008 00:52
;;; Commentary:
;; FUEL provides a complete environment for your Factor coding pleasure
;; inside Emacs, including source code edition and interaction with a
;; Factor listener instance running within Emacs.
;; FUEL was started by Jose A Ortega as an extension to Eduardo Cavazos'
;; original factor.el code. Eduardo is also responsible of naming the
;; beast.
;;; Code:
(require 'fuel-mode)
(provide 'fuel)
;;; fuel.el ends here