Enter the query into the form above. You can look for specific version of a package by using @ symbol like this: gcc@10.
API method:
GET /api/packages?search=hello&page=1&limit=20
where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned
in response headers.
If you'd like to join our channel webring send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
podcaster.el is an podcast client which is derived from syohex's emacs-rebuildfm podcaster.el provides showing podscasts list. Its actions are - Play podcast mp3(requires `avplay or `ffplay or `itunes')
typo.el includes two modes, `typo-mode` and `typo-global-mode`. `typo-mode` is a buffer-specific minor mode that will change a number of normal keys to make them insert typographically useful unicode characters. Some of those keys can be used repeatedly to cycle through variations. This includes in particular quotation marks and dashes. `typo-global-mode` introduces a global minor mode which adds the `C-c 8` prefix to complement Emacs’ default `C-x 8` prefix map. See the documentation of `typo-mode` and `typo-global-mode` for further details. ## Quotation Marks > “He said, ‘leave me alone,’ and closed the door.” All quotation marks in this sentence were added by hitting the " key exactly once each. typo.el guessed the correct glyphs to use from context. If it gets it wrong, you can just repeat hitting the " key until you get the quotation mark you wanted. `M-x typo-change-language` lets you change which quotation marks to use. This is also configurable, in case you want to add your own. ## Dashes and Dots The hyphen key will insert a default hyphen-minus glyph. On repeated use, though, it will cycle through the en-dash, em-dash, and a number of other dash-like glyphs available in Unicode. This means that typing two dashes inserts an en-dash and typing three dashes inserts an em-dash, as would be expected. The name of the currently inserted dash is shown in the minibuffer. The full stop key will self-insert as usual. When three dots are inserted in a row, though, they are replaced by a horizontal ellipsis glyph. ## Other Keys Tick and backtick keys insert the appropriate quotation mark as well. The less-than and greater-than signs cycle insert the default glyphs on first use, but cycle through double and single guillemets on repeated use. ## Prefix Map In addition to the above, typo-global-mode also provides a globally-accessible key map under the `C-c 8` prefix (akin to Emacs’ default `C-x 8` prefix map) to insert various Unicode characters. In particular, `C-c 8 SPC` will insert a no-break space. Continued use of SPC after this will cycle through half a dozen different space types available in Unicode. Check the mode’s documentation for more details.
This is an implemenatation of the Shen programming language in Elisp. The end goal is to provide: 1. An easy way to play with Shen with no other installation hassle (assuming you use Emacs). 2. A first-class development experience when writing Shen. The idea is that an editor that understands the code can be much more helpful than one that does not. To this end the roadmap involves a full gamut of source code introspection and debugging tools.
This package contains extra functions for easy-kill/easy-mark: * easy-mark-word * easy-mark-sexp * easy-mark-to-char * easy-mark-up-to-char These are shorthand commands for easy-marking an aimed string at point. * easy-kill-er-expand * easy-kill-er-unexpand These work like `er/expand-region and `er/contract-region', respectively, using the functionality of the `expand-region package. It also provides the following easy-kill/easy-mark targets: * `buffer This selects the whole buffer. * `buffer-before-point * `buffer-after-point These work like vi's gg/G commands, respectively. * `backward-line-edge * `forward-line-edge The former is like vi's ^/0 commands, and the latter is just like that in the opposite direction. * `string-to-char-forward * `string-to-char-backward * `string-up-to-char-forward * `string-up-to-char-backward These work like vi's f/F/t/T commands, respectively. Experimental ace-jump integration into easy-kill is enabled by default. `ace-jump-*-mode can be invoked for selection when in easy-kill/easy-mark mode. You can disable this feature via a customize variable `easy-kill-ace-jump-enable-p'. Experimental multiple-cursors-mode support for easy-kill is enabled by default. `easy-kill and `easy-mark will mostly work in `multiple-cursors-mode'. Suggested settings are as follows: ;; Upgrade `mark-word and `mark-sexp with easy-mark ;; equivalents. (global-set-key (kbd "M-@") easy-mark-word) (global-set-key (kbd "C-M-@") easy-mark-sexp) ;; `easy-mark-to-char or `easy-mark-up-to-char could be a good ;; replacement for `zap-to-char'. (global-set-key [remap zap-to-char] easy-mark-to-char) ;; Integrate `expand-region functionality with easy-kill (define-key easy-kill-base-map (kbd "o") easy-kill-er-expand) (define-key easy-kill-base-map (kbd "i") easy-kill-er-unexpand) ;; Add the following tuples to `easy-kill-alist', preferrably by ;; using `customize-variable'. (add-to-list easy-kill-alist (?^ backward-line-edge "")) (add-to-list easy-kill-alist (?$ forward-line-edge "")) (add-to-list easy-kill-alist (?b buffer "")) (add-to-list easy-kill-alist (?< buffer-before-point "")) (add-to-list easy-kill-alist (?> buffer-after-point "")) (add-to-list easy-kill-alist (?f string-to-char-forward "")) (add-to-list easy-kill-alist (?F string-up-to-char-forward "")) (add-to-list easy-kill-alist (?t string-to-char-backward "")) (add-to-list easy-kill-alist (?T string-up-to-char-backward ""))
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.
nov.el provides a major mode for reading EPUB documents. Features: Basic navigation (jump to TOC, previous/next chapter); Remembering and restoring the last read position; Jump to next chapter when scrolling beyond end; Storing and following Org links to EPUB files; Renders EPUB2 (.ncx) and EPUB3 (<nav>) TOCs; Hyperlinks to internal and external targets; Supports textual and image documents; Info-style history navigation; View source of document files; Metadata display; Image rescaling.
Zetteldeft is an extension of the Deft package for Emacs. Building on Deft’s search functionality, Zetteldeft provides a way to create and manage links between short notes.
Terminal support for `company-quickhelp'.
writeroom-mode is a minor mode for Emacs that implements a distraction-free writing mode similar to the famous Writeroom editor for OS X. writeroom-mode is meant for GNU Emacs 25 and isn't tested on older versions. See the README or info manual for usage instructions.
Quickstart: Configure an extended Latin font for your default face, such as Monaco, Consolas, or DejaVu Sans Mono. Install these fonts https://dn-works.com/wp-content/uploads/2020/UFAS-Fonts/Symbola.zip http://www.quivira-font.com/files/Quivira.ttf ; or Quivira.otf http://sourceforge.net/projects/dejavu/files/dejavu/2.37/dejavu-fonts-ttf-2.37.tar.bz2 https://github.com/googlei18n/noto-fonts/raw/master/hinted/NotoSans-Regular.ttf https://github.com/googlei18n/noto-fonts/raw/master/unhinted/NotoSansSymbols-Regular.ttf Remove Unifont from your system. (require unicode-fonts) (unicode-fonts-setup) Testing: C-h h ; M-x view-hello-file M-x list-charset-chars RET unicode-bmp RET ; search for 210x M-x list-charset-chars RET unicode-smp RET ; if your backend supports astral chars M-x unicode-fonts-debug-insert-block RET Mathematical_Operators RET Explanation: Emacs maintains font mappings on a per-glyph basis, meaning that multiple fonts are used at the same time (transparently) to display any character for which you have a font. Furthermore, Emacs does this out of the box. However, font mappings via fontsets are a bit difficult to configure. In addition, the default setup does not always pick the most legible fonts. As the manual warns, the choice of font actually displayed for a non-ASCII character is "somewhat random". The Unicode standard provides a way to organize font mappings: it divides character ranges into logical groups called "blocks". This library configures Emacs in a Unicode-friendly way by providing mappings from each Unicode block ---to---> a font with good coverage and makes the settings available via the customization interface. This library provides font mappings for 233 of the 255 blocks in the Unicode 8.0 standard which are public and have displayable characters. It assumes that 6 Latin blocks are covered by the default font. 16/255 blocks are not mapped to any known font. To use unicode-fonts, place the unicode-fonts.el file somewhere Emacs can find it, and add the following to your ~/.emacs file: (require unicode-fonts) (unicode-fonts-setup) See important notes about startup speed below. To gain any benefit from the library, you must have fonts with good Unicode support installed on your system. If you are running a recent version of OS X or Microsoft Windows, you already own some good multi-lingual fonts, though you would do very well to download and install the four items below: From https://dejavu-fonts.github.io/ DejaVu Sans, DejaVu Sans Mono From http://www.quivira-font.com/downloads.php Quivira From https://dn-works.com/wp-content/uploads/2020/UFAS-Fonts/Symbola.zip Symbola Many non-free fonts are referenced by the default settings. However, free alternatives are also given wherever possible, and patches are of course accepted to improve every case. On the assumption that an extended Latin font such as Monaco, Consolas, or DejaVu Sans Mono is already being used for the default face, no separate mappings are provided for the following Unicode blocks: Basic Latin Latin Extended Additional Latin Extended-A Latin Extended-B Latin-1 Supplement Spacing Modifier Letters though some of these remain configurable via `customize'. It is also recommended to remove GNU Unifont from your system. Unifont is very useful for debugging, but not useful for reading. The default options favor correctness and completeness over speed, and can add many seconds to initial startup time in GUI mode. However, when possible a font cache is kept between sessions. If you have persistent-soft.el installed, when you start Emacs the second time, the startup cost should be negligible. The disk cache will be rebuilt during Emacs startup whenever a font is added or removed, or any relevant configuration variables are changed. To increase the speed of occasionally building the disk cache, you may use the customization interface to remove fonts from `unicode-fonts-block-font-mapping which are not present on your system. If you are using a language written in Chinese or Arabic script, try customizing `unicode-fonts-skip-font-groups to control which script you see, and send a friendly bug report. Color Emoji are enabled by default when using the Native Mac port on OS X. This can be disabled by customizing each relevant mapping, or by turning off all multicolor glyphs here: M-x customize-variable RET unicode-fonts-skip-font-groups RET See Also M-x customize-group RET unicode-fonts RET M-x customize-variable RET unicode-fonts-block-font-mapping RET Notes Free fonts recognized by this package may be downloaded from the following locations. For any language, it is increasingly likely that Noto Sans provides coverage: From http://www.google.com/get/noto/ Noto Sans and friends ; 181 Unicode blocks and counting; sole ; source for these blocks: ; ; Bamum / Bamum Supplement / Kaithi ; Mandaic / Meetei Mayek Extensions ; Sundanese Supplement ; ; Also a good source for recently-added ; glyphs such as "Turkish Lira Sign". From http://scripts.sil.org/cms/scripts/page.php?item_id=CharisSIL_download or http://scripts.sil.org/cms/scripts/page.php?item_id=DoulosSIL_download Charis SIL or Doulos SIL ; Extended European and diacritics From http://scripts.sil.org/cms/scripts/page.php?item_id=Gentium_download Gentium Plus ; Greek From http://users.teilar.gr/~g1951d/ Aegean, Aegyptus, Akkadian ; Ancient languages Analecta ; Ancient languages, Deseret Anatolian ; Ancient languages Musica ; Musical Symbols Nilus ; Ancient languages From http://www.wazu.jp/gallery/views/View_MPH2BDamase.html MPH 2B Damase ; Arabic, Armenian, Buginese, Cherokee, Georgian, ; Glagolitic, Hanunoo, Kharoshthi, Limbu, Osmanya, ; Shavian, Syloti Nagri, Tai Le, Thaana From http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=NamdhinggoSIL Namdhinggo SIL ; Limbu From http://wenq.org/wqy2/index.cgi?FontGuide WenQuanYi Zen Hei ; CJK (Simplified Chinese) From http://babelstone.co.uk/Fonts/ BabelStone Han ; CJK (Simplified Chinese) BabelStone Phags-pa Book ; Phags-pa BabelStone Modern ; Tags / Specials / Selectors From http://vietunicode.sourceforge.net/fonts/fonts_hannom.html HAN NOM A, HAN NOM B ; CJK (Nôm Chinese) From http://kldp.net/projects/unfonts/ Un Batang ; CJK (Hangul) From http://sourceforge.jp/projects/hanazono-font/releases/ Hana Min A, Hana Min B ; CJK (Japanese) From http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=SILYi_home Nuosu SIL ; CJK (Yi) From http://www.daicing.com/manchu/index.php?page=fonts-downloads Daicing Xiaokai ; Mongolian From http://www.library.gov.bt/IT/fonts.html Jomolhari ; Tibetan From http://www.thlib.org/tools/scripts/wiki/tibetan%20machine%20uni.html Tibetan Machine Uni ; Tibetan From http://scripts.sil.org/cms/scripts/page.php?item_id=Padauk Padauk ; Myanmar From https://code.google.com/p/myanmar3source/downloads/list Myanmar3 ; Myanmar From http://www.yunghkio.com/unicode/ Yunghkio ; Myanmar From https://code.google.com/p/tharlon-font/downloads/list TharLon ; Myanmar From http://sourceforge.net/projects/prahita/files/Myanmar%20Unicode%20Fonts/MasterpieceUniSans/ Masterpiece Uni Sans ; Myanmar From http://sarovar.org/projects/samyak/ Samyak ; Gujarati, Malayalam, Oriya, Tamil From http://software.sil.org/annapurna/download/ Annapurna SIL ; Devanagari From http://guca.sourceforge.net/typography/fonts/anmoluni/ AnmolUni ; Gurmukhi From http://brahmi.sourceforge.net/downloads2.html Kedage ; Kannada From http://www.omicronlab.com/bangla-fonts.html Mukti Narrow ; Bengali From http://www.kamban.com.au/downloads.html Akshar Unicode ; Sinhala From http://tabish.freeshell.org/eeyek/download.html Eeyek Unicode ; Meetei Mayek From http://scripts.sil.org/CMS/scripts/page.php?&item_id=Mondulkiri Khmer Mondulkiri ; Khmer From http://www.laoscript.net/downloads/ Saysettha MX ; Lao From http://www.geocities.jp/simsheart_alif/taithamunicode.html Lanna Alif ; Tai Tham From http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=DaiBannaSIL Dai Banna SIL ; New Tai Lue From http://scripts.sil.org/cms/scripts/page.php?item_id=TaiHeritage Tai Heritage Pro ; Tai Viet From http://sabilulungan.org/aksara/ Sundanese Unicode ; Sundanese From http://www.amirifont.org/ Amiri ; Arabic (Naskh) From http://scripts.sil.org/cms/scripts/page.php?item_id=Scheherazade Scheherazade ; Arabic (Naskh) From http://www.farsiweb.ir/wiki/Persian_fonts Koodak ; Arabic (Farsi) From http://openfontlibrary.org/font/ahuramazda/ Ahuramzda ; Avestan From http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=AbyssinicaSIL Abyssinica SIL ; Ethiopic From http://www.bethmardutho.org/index.php/resources/fonts.html Estrangelo Nisibin ; Syriac From http://www.evertype.com/fonts/nko/ Conakry ; N'ko From http://uni.hilledu.com/download-ribenguni Ribeng ; Chakma From http://www.virtualvinodh.com/downloads Adinatha Tamil Brahmi ; Brahmi From http://ftp.gnu.org/gnu/freefont/ FreeMono, etc (FreeFont) ; Kayah Li (and others) From http://ulikozok.com/aksara-batak/batak-font/ Batak-Unicode ; Batak From http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=Mingzat Mingzat ; Lepcha From http://phjamr.github.io/lisu.html#install http://phjamr.github.io/miao.html#install http://phjamr.github.io/mro.html#install Miao Unicode ; Miao Lisu Unicode ; Lisu Mro Unicode ; Mro From http://scholarsfonts.net/cardofnt.html Cardo ; Historical Languages From http://sourceforge.net/projects/junicode/files/junicode/ Junicode ; Historical Languages From http://www.evertype.com/fonts/vai/ Dukor ; Vai From http://sourceforge.net/projects/zhmono/ ZH Mono ; Inscriptional Pahlavi / Parthian From http://culmus.sourceforge.net/ancient/index.html Aramaic Imperial Yeb ; Imperial Aramaic From http://www.languagegeek.com/font/fontdownload.html Aboriginal Sans ; Aboriginal Languages Aboriginal Serif From http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=EzraSIL_Home Ezra SIL ; Hebrew From http://www.evertype.com/fonts/coptic/ Antinoou ; Coptic / General Punctuation From http://apagreekkeys.org/NAUdownload.html New Athena Unicode ; Ancient Languages / Symbols From http://markmail.org/thread/g57mk4sbdycblxds KhojkiUnicodeOT ; Khojki From https://github.com/andjc/ahom-unicode/tree/master/font AhomUnicode ; Ahom From https://github.com/MihailJP/oldsindhi/releases OldSindhi ; Khudawadi From https://github.com/MihailJP/Muktamsiddham/releases MuktamsiddhamG ; Siddham (note trailing "G" on font name) From https://github.com/MihailJP/MarathiCursive/releases MarathiCursiveG ; Modi (note trailing "G" on font name) From https://github.com/OldHungarian/old-hungarian-font/releases OldHungarian ; Old Hungarian From http://tutohtml.perso.sfr.fr/unicode.html Albanian ; Elbasan / Takri / Sharada From https://github.com/enabling-languages/cham-unicode/tree/master/fonts/ttf Cham OI_Tangin ; Cham From https://ctan.org/tex-archive/fonts/Asana-Math?lang=en Asana Math ; Mathematical Symbols Compatibility and Requirements GNU Emacs version 23.3 and higher : yes GNU Emacs version 22.3 and lower : no Requires font-utils.el, ucs-utils.el Bugs The default choice of font for each code block balances coverage versus appearance. This is necessarily subjective. Unicode also defines the notion of a "script" as a higher-level abstraction which is independent of "blocks". Modern fonts can report their script coverage, and Emacs may also access that information. However, this library ignores scripts in favor of blocks and glyphs. Checking for font availability is slow. This library can add anywhere between 0.1 - 10 secs to startup time. It is slowest under X11. Some per-architecture limitations are documented in font-utils.el Calling `set-fontset-font can easily crash Emacs. There is a workaround, but it may not be sufficient on all platforms. Tested on Cocoa Emacs, Native Mac Emacs, X11/XQuartz, MS Windows XP. Glyph-by-glyph fallthrough happens differently depending on the font backend. On Cocoa Emacs, glyph-by-glyph fallthrough does not occur, and manual per-glyph overrides are required to maximize coverage. Fallthrough works on MS Windows, but not perfectly. X11/FreeType behaves most predictably. The following ranges cannot be overridden within the "fontset-default" fontset: Latin Extended Additional Latin Extended-B Spacing Modifier Letters `unicode-fonts-overrides-mapping shows some order-dependence, which must indicate a bug in this code. A number of the entries in `unicode-fonts-overrides-mapping are workarounds for the font Monaco, and therefore specific to OS X. Widths of alternate fonts do not act as expected on MS Windows. For example, DejaVu Sans Mono box-drawing characters may use a different width than the default font. TODO provide additional interfaces - dump set-fontset-font instructions - immediately set font for character/current-character/range - recommend font for current character - alternatives to customize, which can be called before unicode-fonts-setup - eg "prefer this font for this block" - also character/range ie overrides scripts vs blocks - further doc note - provide alternative interface via scripts reorganize font list by language? - break down into living/dead/invented support MUFI for PUA support ConScript for PUA Aramaic as a style of Hebrew (set-language-environment "UTF-8") ? Include all Windows 8 fonts Include all Windows 10 fonts Remove very old Microsoft entries (eg Monotype.com which was renamed Andale) Recognize the default font and make smarter choices when it is one of the provided mappings. (On Cocoa, the default font is returned when font-info fails, which is not a good thing overall.) For every font, list font version and unicode blocks which are complete. Note all decorative fonts Adobe international fonts which are supplied with Reader Apple fonts which could not be mapped Wawati TC Weibei TC Weibei SC Wawati SC ; 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.
Guru mode teaches you how to use Emacs effectively. In particular it promotes the use of idiomatic keybindings for essential editing commands. It can be configured to either disallow the alternative keybindings completely or to warn when they are being used.
Show the total clocked time of the current day in the mode line
Auto format emacs-lisp code on save. ; Usage (elisp-autofmt-buffer) ; Auto-format the current buffer. You may also use the minor mode `elisp-autofmt-mode which enables formatting the buffer on save.
Create and maintain Keep a Changelog based entries. See https://keepachangelog.com/ for this specific change log format. A nascent changelog is created with `markdown-changelog-new and `markdown-changelog-add-release is used to add a new entry. For more information and motivation for markdown changelogs see https://github.com/plandes/markdown-changelog#motivation
This is just dependency for ac-html, company-web `web-completion-data-sources is pair list of framework-name and directory of completion data This package provide default "html" completion data. Completion data directory structure: html-attributes-complete - attribute completion html-attributes-list - attributes of tags-add-tables html-attributes-short-docs - attributes documantation html-tag-short-docs - tags documantation If you decide extend with own completion data, let say "Bootstrap" data: (unless (assoc "Bootstrap" web-completion-data-sources) (setq web-completion-data-sources (cons (cons "Bootstrap" "/path/to/complete/data") web-completion-data-sources)))
This package provides a simple command to restart Emacs from within Emacs
Erlang gettext application
An OTP Gemini protocol client application
websockets is a library for building WebSocket servers and clients in Python with a focus on correctness and simplicity.
Built on top of asyncio, Python's standard asynchronous I/O framework, it provides an elegant coroutine-based API.
Logback is intended as a successor to the popular log4j project. This module lays the groundwork for the other two modules.
yt-dlp is a small command-line program to download videos from YouTube.com and many more sites. It is a fork of youtube-dl with a focus on adding new features while keeping up-to-date with the original project.
GCC is the GNU Compiler Collection. It provides compiler front-ends for several languages, including C, C++, Objective-C, Fortran, Ada, and Go. It also includes runtime support libraries for these languages.
Logback is intended as a successor to the popular log4j project. This module can be assimilated to a significantly improved version of log4j. Moreover, logback-classic natively implements the slf4j API so that you can readily switch back and forth between logback and other logging frameworks such as log4j or java.util.logging (JUL).
Urllib3 supports features left out of urllib and urllib2 libraries. It can reuse the same socket connection for multiple requests, it can POST files, supports url redirection and retries, and also gzip and deflate decoding.