

GitHub - zellio/j-mode: Emacs major mode for editing J code.
source link: https://github.com/zellio/j-mode
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.

J Mode
Provides font-lock, REPL integration ( via comint ) and a basic help documentation for the J programming language.
Installation
j-mode
has been added to the el-get package managment system and can now
be installed via the el-get-install
function.
To install the project manually fetch the source via git or direct download, place in your load path and load / require normally.
;; Add this to your emacs config
(add-to-list 'load-path "/path/to/j-mode/")
(autoload 'j-mode "j-mode.el" "Major mode for editing J files" t)
;; Add for detection of j source files if the auto-load fails
(add-to-list 'auto-mode-alist '("\\.ij[rstp]$" . j-mode))
J Font Lock
j-mode
font-lock provides four new faces for management of the coloring
various parts of speech. Those faces are j-verb-face
j-adverb-face
j-conjunction-face
j-other-face
. They can be modified like any of the
standard built in faces to help meet your need.
(custom-set-face
'(j-verb-face ((t (:foreground "Red"))))
'(j-adverb-face ((t (:foreground "Green"))))
'(j-conjunction-face ((t (:foreground "Blue"))))
'(j-other-face ((t (:foreground "Black")))))
J Console
Interaction to the j REPL is provided via the comint module. The j-console
function starts the REPL session in a new buffer.
The module provides the following key bindings for convenience
- C-c ! Runs the
j-console
function - C-c C-l Executes the current line
- C-c C-r Executes the current region
- C-c C-c Executes the current buffer
NB. Java on many Linux systems provides an executable which is sadly named
jconsole
. This means that there is a good chance j-mode
will attempt to
start the Java console up instead of the J console when beginning a new REPL
session. The easiest fix for this, as I doubt that we can convince the Java
packagers to rename their executable, is to set the j-console-cmd
variable
provided by j-console.el
. This can be done either directly or via the
custom-set-variables
block.
J Help
j-help
provides access to the
J software vocabulary
via two functions j-help-lookup-symbol
and
j-help-lookup-symbol-at-point
. j-help-look-symbol
takes one string argument
( generally via the mini-buffer ) which it then looks up.
j-help-lookup-symbol-at-point
attempts to determine which symbol is under your
cursor and then passes that to j-help-lookup-symbol
.
The module provides the following key bindings for convenience
- C-c h runs
j-help-lookup-symbol
- C-c C-h
j-help-lookup-symbol-at-point
License
Copyright (C) 2012-2014 Zachary Elliott
Distributed under the GNU General Public License; see C-h t in emacs to view.
</article
Recommend
-
180
About Improved JavaScript editing mode for GNU Emacs (description here). For some of the latest changes, see
-
203
web-mode.el web-mode.el is an emacs major mode for editing web templates aka HTML files embedding parts (CSS/JavaScript) and blocks (pre rendered by client/server side engines). web-mode.el is compatible with many...
-
38
html template editing for emacs web-mode.el About web-mode.el is an autonomous emacs major-mode for editing web templates. HTML documents can embed parts (CSS...
-
15
Files Permalink Latest commit message Commit time
-
24
yard-mode Rudimentary support for fontifying YARD tags and directives in ruby comments. Installation Use MELPA: M-x package-install yard-mode. Ad...
-
20
Files Permalink Latest commit message Commit time
-
8
pip-requirements.el This is a major mode for editing pip requirements files, with the following features: Syntax highlighting Togglable comments Auto completion of package names from PyPI A...
-
18
Emacs major-mode to work with Beancount ledger files This package provides beancount-mode an Emacs major-mode implementing syntax...
-
18
-
16
Emacs: Vile Mode (VIm Like Editing)
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK