emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/j-mode 94a4d08 16/56: 1.0.0 Release


From: ELPA Syncer
Subject: [nongnu] elpa/j-mode 94a4d08 16/56: 1.0.0 Release
Date: Sun, 29 Aug 2021 11:20:46 -0400 (EDT)

branch: elpa/j-mode
commit 94a4d083c8e1351da6c285324129acada4c2a81c
Author: Zachary Elliott <zach@nyu.edu>
Commit: Zachary Elliott <zach@nyu.edu>

    1.0.0 Release
    
      * Large changes to j-help
      * minor changes to other files
---
 README.md      |  2 +-
 j-console.el   |  8 +++++---
 j-font-lock.el | 15 ++++++++++++---
 j-mode.el      | 24 +++++++++++++++++++-----
 4 files changed, 37 insertions(+), 12 deletions(-)

diff --git a/README.md b/README.md
index d6ce00a..66c5f5a 100644
--- a/README.md
+++ b/README.md
@@ -50,7 +50,7 @@ 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-at-point`.
+cursor and then passes that to `j-help-lookup-symbol`.
 
 The module provides the following key bindings for convenience
 
diff --git a/j-console.el b/j-console.el
index aa0f1ed..0ebd63d 100644
--- a/j-console.el
+++ b/j-console.el
@@ -5,7 +5,7 @@
 ;;
 ;; Authors: Zachary Elliott <ZacharyElliott1@gmail.com>
 ;; URL: http://github.com/zellio/j-mode
-;; Version: 0.0.1
+;; Version: 1.0.0
 ;; Keywords: J, Langauges
 
 ;; This file is not part of GNU Emacs.
@@ -37,8 +37,8 @@
 (require 'comint)
 
 
-(defconst j-console-version "0.0.1"
-  "`j-console' version")
+;; (defconst j-console-version "0.0.1"
+;;   "`j-console' version")
 
 (defgroup j-console nil
   "REPL integration extention for `j-mode'"
@@ -139,3 +139,5 @@ the containing buffer"
   (j-console-execute-region (point-min) (point-max)))
 
 (provide 'j-console)
+
+;;; j-console.el ends here
diff --git a/j-font-lock.el b/j-font-lock.el
index a37fd27..f5d88f2 100644
--- a/j-font-lock.el
+++ b/j-font-lock.el
@@ -5,14 +5,23 @@
 ;;
 ;; Authors: Zachary Elliott <ZacharyElliott1@gmail.com>
 ;; URL: http://github.com/zellio/j-mode
-;; Version: 0.0.1
+;; Version: 1.0.0
 ;; Keywords: J, Langauges
 
 ;; This file is not part of GNU Emacs.
 
 ;;; Commentary:
 
+;; `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")))))
 
 ;;; License:
 
@@ -34,8 +43,8 @@
 ;;; Code:
 
 
-(defconst j-font-lock-version "0.0.1"
-  "`j-font-lock' version")
+;; (defconst j-font-lock-version "1.0.0"
+;;   "`j-font-lock' version")
 
 (defgroup j-font-lock nil
   "font-lock extension for j-mode"
diff --git a/j-mode.el b/j-mode.el
index ffb5439..174b262 100644
--- a/j-mode.el
+++ b/j-mode.el
@@ -5,14 +5,27 @@
 ;;
 ;; Authors: Zachary Elliott <ZacharyElliott1@gmail.com>
 ;; URL: http://github.com/zellio/j-mode
-;; Version: 0.1.1
+;; Version: 1.0.0
 ;; Keywords: J, Langauges
 
 ;; This file is not part of GNU Emacs.
 
 ;;; Commentary:
 
+;; Provides font-lock and basic REPL integration for the
+;; [J programming language](http://www.jsoftware.com)
+
+;;; Installation
+
+;; The only method of installation is to check out the project, add it to the
+;; load path, and load normally. This may change one day.
+;;
+;; Put this in your emacs config
+;;   (add-to-list 'load-path "/path/to/j-mode/")
+;;   (load "j-mode")
 ;;
+;; Add for detection of j source files if the auto-load fails
+;;   (add-to-list 'auto-mode-alist '("\\.ij[rstp]$" . j-mode)))
 
 ;;; License:
 
@@ -38,7 +51,7 @@
 (require 'j-help)
 
 
-(defconst j-mode-version "0.1.1"
+(defconst j-mode-version "1.0.0"
   "`j-mode' version")
 
 (defgroup j-mode nil
@@ -97,9 +110,10 @@
           . j-font-lock-syntactic-face-function)))
   (run-mode-hooks 'j-mode-hook))
 
+
 ;;;###autoload
-(progn
-  ;; adding j files to the auot-mode-alist
-  (add-to-list 'auto-mode-alist '("\\.ij[rstp]$" . j-mode)))
+(add-to-list 'auto-mode-alist '("\\.ij[rstp]$" . j-mode))
 
 (provide 'j-mode)
+
+;;; j-mode.el ends here



reply via email to

[Prev in Thread] Current Thread [Next in Thread]