_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/
emacs-octo-mode 20161008.1229
Channel: yewscion
Location: cdr255/emacs.scm (cdr255 emacs)
Home page: https://github.com/cryon/octo-mode
Licenses: Expat
Build system: emacs
Synopsis: Major mode for Octo assembly language
Description:

Major mode for editing Octo source code. A high level assembly language for the Chip8 virtual machine. See: https://github.com/JohnEarnest/Octo The mode could most likely have benefited from deriving asm-mode as Octo is an assembly language. However part of the reasoning behind creating this mode was learning more about Emacs internals. The language is simple enough to allow the mode to be quite compact anyways. Much inspiration was taken from yaml-mode so there might be similarities in the source structure and naming choices. ; Installation: The easiest way to install octo-mode is from melpa. Assuming MELPA is added to your archive list you can list the available packages by typing M-x list-packages, look for octo-mode, mark it for installation by typing i and then execute (install) by typing x'. Or install it directly with M-x package-install RET octo-mode. If you want to install it manually, just drop this file anywhere in your `load-path'. Be default octo-mode associates itself with the *.8o file ending. You can enable the mode manually by M-x octo-mode RET.

emacs-titlecase 20230714.323
Channel: yewscion
Location: cdr255/emacs.scm (cdr255 emacs)
Home page: https://codeberg.org/acdw/titlecase.el
Licenses: GPL 3
Build system: emacs
Synopsis: Title-case phrases
Description:

This library strives to be the most accurate possible with title-casing sentences, lines, and regions of text in English prose according to a number of styles guides capitalization rules. It is necessarily a best-effort; due to the vaguaries of written English it's impossible to completely correctly capitalize aribtrary titles. So be sure to proofread and copy-edit your titles before sending them off to be published, and never trust a computer. INSTALLATION and USE: Make sure both titlecase.el and titlecase-data.el are in your `load-path', and `require titlecase. You should then be able to call the interactive functions defined in this file. ; CUSTOMIZATION: Only two customization options are probably going to be of any interest: `titlecase-style (the style to use for capitalizing titles), and `titlecase-dwim-non-region-function', which determines what to do when `titlecase-dwim isn't acting on a region. If you want to use your own title-casing code, or a third party, you can customize `titlecase-command to something other than its default. One possibility is titlecase.pl, written John Gruber and Aristotle Pagaltzis: https://github.com/ap/titlecase.

emacs-ucs-utils 20230119.2237
Propagated dependencies: emacs-persistent-soft@20150223.1853 emacs-pcache@20220724.1841 emacs-list-utils@0.4.7
Channel: yewscion
Location: cdr255/emacs.scm (cdr255 emacs)
Home page: http://github.com/rolandwalker/ucs-utils
Licenses: FreeBSD
Build system: emacs
Synopsis: Utilities for Unicode characters
Description:

Quickstart (require ucs-utils) (ucs-utils-char "Middle Dot" ; character to return ?. ; fallback if unavailable char-displayable-p) ; test for character to pass (ucs-utils-first-existing-char ("White Bullet" "Bullet Operator" "Circled Bullet" "Middle Dot" ?.) cdp) (ucs-utils-string "Horizontal Ellipsis" [["..."]]) Explanation This library provides utilities for manipulating Unicode characters, with integrated ability to return fallback characters when Unicode display is not possible. Some ambiguities in Emacs built-in Unicode data are resolved, and character support is updated to Unicode 8.0. There are three interactive commands: `ucs-utils-ucs-insert ; `ucs-insert workalike using ido `ucs-utils-eval ; the inverse of `ucs-insert `ucs-utils-install-aliases ; install shorter aliases The other functions are only useful from other Lisp code: `ucs-utils-char `ucs-utils-first-existing-char `ucs-utils-vector `ucs-utils-string `ucs-utils-intact-string `ucs-utils-pretty-name `ucs-utils-read-char-by-name `ucs-utils-subst-char-in-region To use ucs-utils, place the ucs-utils.el library somewhere Emacs can find it, and add the following to your ~/.emacs file: (require ucs-utils) and optionally (ucs-install-aliases) See Also M-x customize-group RET ucs-utils RET http://en.wikipedia.org/wiki/Universal_Character_Set Notes Compatibility and Requirements GNU Emacs version 25.1-devel : not tested GNU Emacs version 24.5 : not tested GNU Emacs version 24.4 : yes GNU Emacs version 24.3 : yes GNU Emacs version 23.3 : yes (*) GNU Emacs version 22.3 and lower : no (*) For full Emacs 23.x support, the library ucs-utils-6.0-delta.el should also be installed. Uses if present: persistent-soft.el (Recommended) Bugs TODO Accept synonyms on inputs? at least Tab would be nice. There is an official list of aliases at http://www.unicode.org/Public/8.0.0/ucd/NameAliases.txt generated names for CJK blocks added in Unicode 6.2 CJK Unified Ideographs CJK Unified Ideographs Extension A CJK Unified Ideographs Extension C support alternate naming schemes for CJK ideographs support helm or other choosers which are able to cope with the entire set of character names, including CJK ideographs spin out older portions of ucs-utils-names-corrections which are not needed in recent Emacs releases (as with ucs-utils-6.0-delta.el) Namespace cache keys as with font-utils and unicode-utils. Separate test run without persistent-soft.el ; License Simplified BSD License: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. This software is provided by Roland Walker "AS IS" and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall Roland Walker or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage. The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Roland Walker. No rights are claimed over data created by the Unicode Consortium, which are included here under the terms of the Unicode Terms of Use.

emacs-with-emacs 20220814.444
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/twlz0ne/with-emacs.el
Licenses:
Build system: melpa
Synopsis: Evaluate Emacs Lisp expressions in a separate Emacs process
Description:

Documentation at https://melpa.org/#/with-emacs

emacs-discomfort 0.8-0.5258564
Propagated dependencies: emacs-debase@0.7-0.dccea8a
Channel: rrr
Location: rrr/packages/emacs-xyz.scm (rrr packages emacs-xyz)
Home page: https://codeberg.org/emacs-weirdware/discomfort
Licenses: GPL 3+
Build system: emacs
Synopsis: UDisks2 UI for Emacs, to mount & unmount disks
Description:
emacs-scala-mode 20221025.1502
Channel: yewscion
Location: cdr255/emacs.scm (cdr255 emacs)
Home page: https://github.com/hvesalai/emacs-scala-mode
Licenses: GPL 3
Build system: emacs
Synopsis: Major mode for editing Scala
Description:
emacs-pasvortilo 20251210.2125
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://codeberg.org/mester/pasvortilo
Licenses:
Build system: melpa
Synopsis: Password manager interface for pass/gopass
Description:

Documentation at https://melpa.org/#/pasvortilo

emacs-mindstream 20260614.1629
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/countvajhula/mindstream
Licenses:
Build system: melpa
Synopsis: Start writing, stay focused, don't worry
Description:

Documentation at https://melpa.org/#/mindstream

emacs-libelcouch 20230903.800
Propagated dependencies: emacs-request@20250219.2213
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/DamienCassou/libelcouch/
Licenses:
Build system: melpa
Synopsis: Communication with CouchDB
Description:

Documentation at https://melpa.org/#/libelcouch

emacs-logalimacs 20131021.1829
Propagated dependencies: emacs-popwin@20260103.1800 emacs-popup@20251231.1622 emacs-stem@20131102.1109
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/logaling/logalimacs
Licenses:
Build system: melpa
Synopsis: Front-end to logaling-command for Ruby gems
Description:

Documentation at https://melpa.org/#/logalimacs

emacs-codespaces 20260305.2229
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/F4ban/codespaces.el
Licenses:
Build system: melpa
Synopsis: Connect to GitHub Codespaces via TRAMP
Description:

Documentation at https://melpa.org/#/codespaces

emacs-namespaces 20130326.2250
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/chrisbarrett/elisp-namespaces
Licenses:
Build system: melpa
Synopsis: An implementation of namespaces for Elisp, with an emphasis on immutabilty
Description:

Documentation at https://melpa.org/#/namespaces

emacs-restclient 20260627.1851
Propagated dependencies: emacs-compat@30.1.0.1
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/emacsorphanage/restclient
Licenses:
Build system: melpa
Synopsis: An interactive HTTP client for Emacs
Description:

Documentation at https://melpa.org/#/restclient

emacs-kubernetes 20260402.429
Propagated dependencies: emacs-dash@20260221.1346 emacs-magit-section@20260514.937 emacs-magit-popup@20200719.1015 emacs-with-editor@20260625.855 emacs-request@20250219.2213 emacs-s@20220902.1511
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/kubernetes-el/kubernetes-el
Licenses:
Build system: melpa
Synopsis: Magit-like porcelain for Kubernetes
Description:

Documentation at https://melpa.org/#/kubernetes

emacs-caseformat 20160115.1615
Propagated dependencies: emacs-dash@20260221.1346 emacs-s@20220902.1511
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/HKey/caseformat
Licenses:
Build system: melpa
Synopsis: Format based letter case converter
Description:

Documentation at https://melpa.org/#/caseformat

emacs-yatemplate 20211115.1208
Propagated dependencies: emacs-yasnippet@20250602.1342
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/mineo/yatemplate
Licenses:
Build system: melpa
Synopsis: File templates with yasnippet
Description:

Documentation at https://melpa.org/#/yatemplate

emacs-projection 20260614.1822
Propagated dependencies: emacs-compat@30.1.0.1 emacs-f@20241003.1131 emacs-s@20220902.1511
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/mohkale/projection
Licenses:
Build system: melpa
Synopsis: Project type support for `project'
Description:

Documentation at https://melpa.org/#/projection

emacs-marginalia 20260519.1044
Propagated dependencies: emacs-compat@30.1.0.1
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/minad/marginalia
Licenses:
Build system: melpa
Synopsis: Enrich existing commands with completion annotations
Description:

Documentation at https://melpa.org/#/marginalia

emacs-soundcloud 20150502.326
Propagated dependencies: emacs-emms@20260414.1505 emacs-deferred@20170901.1330 emacs-string-utils@20140508.2041 emacs-request@20250219.2213 emacs-request-deferred@20220614.1604
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/thieman/soundcloud.el
Licenses:
Build system: melpa
Synopsis: A SoundCloud client for Emacs
Description:

Documentation at https://melpa.org/#/soundcloud

emacs-linguistic 20181129.2116
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/andcarnivorous/linguistic
Licenses:
Build system: melpa
Synopsis: A package for basic linguistic analysis
Description:

Documentation at https://melpa.org/#/linguistic

emacs-simplenote 20141118.1440
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/dotemacs/simplenote.el
Licenses:
Build system: melpa
Synopsis: Interact with simple-note.appspot.com
Description:

Documentation at https://melpa.org/#/simplenote

emacs-dictionary 20201001.1727
Propagated dependencies: emacs-connection@20191111.446 emacs-link@20191111.446
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/myrkr/dictionary-el
Licenses:
Build system: melpa
Synopsis: Client for rfc2229 dictionary servers
Description:

Documentation at https://melpa.org/#/dictionary

emacs-sotclojure 20170922.8
Propagated dependencies: emacs-clojure-mode@20260615.1407 emacs-cider@20260628.848 emacs-sotlisp@20220909.803
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/Malabarba/speed-of-thought-clojure
Licenses:
Build system: melpa
Synopsis: Write clojure at the speed of thought
Description:

Documentation at https://melpa.org/#/sotclojure

emacs-soundklaus 20191220.2112
Propagated dependencies: emacs-dash@20260221.1346 emacs-emms@20260414.1505 emacs-s@20220902.1511 emacs-pkg-info@20150517.1143 emacs-request@20250219.2213
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/r0man/soundklaus.el
Licenses:
Build system: melpa
Synopsis: Play music on SoundCloud with Emacs via EMMS
Description:

Documentation at https://melpa.org/#/soundklaus

Total packages: 8481