├── .bumpversion.cfg ├── .dir-locals.el ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── AUTHORS.md ├── CONTRIBUTING.md ├── Cask ├── LICENSE ├── NEWS.md ├── README.md ├── RELEASE.md ├── circe-chanop.el ├── circe-color-nicks.el ├── circe-compat.el ├── circe-display-images.el ├── circe-lagmon.el ├── circe-new-day-notifier.el ├── circe-pingmon.el ├── circe.el ├── images ├── circe.jpg └── screenshot.png ├── irc.el ├── lcs.el ├── lui-autopaste.el ├── lui-format.el ├── lui-irc-colors.el ├── lui-logging.el ├── lui-track-bar.el ├── lui-track.el ├── lui.el ├── make-tls-process.el ├── scripts ├── compile ├── env ├── release ├── setup ├── test └── test-full ├── shorten.el ├── tests ├── manual │ └── test-nsm.el ├── test-circe.el ├── test-irc.el ├── test-shorten.el └── test-tracking.el └── tracking.el /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /release 3 | *.elc 4 | .cask 5 | -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/Cask -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/RELEASE.md -------------------------------------------------------------------------------- /circe-chanop.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/circe-chanop.el -------------------------------------------------------------------------------- /circe-color-nicks.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/circe-color-nicks.el -------------------------------------------------------------------------------- /circe-compat.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/circe-compat.el -------------------------------------------------------------------------------- /circe-display-images.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/circe-display-images.el -------------------------------------------------------------------------------- /circe-lagmon.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/circe-lagmon.el -------------------------------------------------------------------------------- /circe-new-day-notifier.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/circe-new-day-notifier.el -------------------------------------------------------------------------------- /circe-pingmon.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/circe-pingmon.el -------------------------------------------------------------------------------- /circe.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/circe.el -------------------------------------------------------------------------------- /images/circe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/images/circe.jpg -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /irc.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/irc.el -------------------------------------------------------------------------------- /lcs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/lcs.el -------------------------------------------------------------------------------- /lui-autopaste.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/lui-autopaste.el -------------------------------------------------------------------------------- /lui-format.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/lui-format.el -------------------------------------------------------------------------------- /lui-irc-colors.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/lui-irc-colors.el -------------------------------------------------------------------------------- /lui-logging.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/lui-logging.el -------------------------------------------------------------------------------- /lui-track-bar.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/lui-track-bar.el -------------------------------------------------------------------------------- /lui-track.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/lui-track.el -------------------------------------------------------------------------------- /lui.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/lui.el -------------------------------------------------------------------------------- /make-tls-process.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/make-tls-process.el -------------------------------------------------------------------------------- /scripts/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/scripts/compile -------------------------------------------------------------------------------- /scripts/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/scripts/env -------------------------------------------------------------------------------- /scripts/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/scripts/release -------------------------------------------------------------------------------- /scripts/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/scripts/setup -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | cd "$(dirname "$0")/.." 5 | 6 | cask exec buttercup -L . 7 | -------------------------------------------------------------------------------- /scripts/test-full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/scripts/test-full -------------------------------------------------------------------------------- /shorten.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/shorten.el -------------------------------------------------------------------------------- /tests/manual/test-nsm.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/tests/manual/test-nsm.el -------------------------------------------------------------------------------- /tests/test-circe.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/tests/test-circe.el -------------------------------------------------------------------------------- /tests/test-irc.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/tests/test-irc.el -------------------------------------------------------------------------------- /tests/test-shorten.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/tests/test-shorten.el -------------------------------------------------------------------------------- /tests/test-tracking.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/tests/test-tracking.el -------------------------------------------------------------------------------- /tracking.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacs-circe/circe/HEAD/tracking.el --------------------------------------------------------------------------------