Skip to content

Commit 1888abe

Browse files
authored
[ new ] unicode symbols for various 'tacks' (#7791)
* [ new ] unicode symbols for various 'tacks' We discussed using the bbot in agda/agda-stdlib#2595 * Fix silly mistake * [ changelog ] for the emacs mode extension
1 parent 4351265 commit 1888abe

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@ Interaction and emacs mode
283283
This is only a surface-level fix, since Agda might still fail to find the properly qualified name for
284284
the constructor in scope, but should at least make more sense in most situations.
285285

286+
* New bindings for unicode 'tacks' (⟘⟙⟛⟝⟞⫫⫪) via \tack (as well as specialised names for each of them)
286287

287288
Backends
288289
--------

src/data/emacs-mode/agda-input.el

+11-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ order for the change to take effect."
256256
("glb" . ("")) ("lub" . (""))
257257
("Glb" . ("")) ("Lub" . (""))
258258

259-
;; Entailment etc.
259+
;; Entailment, tacks, etc.
260260

261261
("entails" . ,(agda-input-to-string-list "⊢⊣⊤⊥⊦⊧⊨⊩⊪⊫⊬⊭⊮⊯"))
262262

@@ -267,6 +267,16 @@ order for the change to take effect."
267267
("||=" . ("")) ("||=n" . (""))
268268
("|||-" . (""))
269269

270+
271+
("tack" . ,(agda-input-to-string-list "⟘⟙⟛⟝⟞⫫⫪"))
272+
("Bot" . ("")) ;; similar to Glb/Lub vs. glb/lub
273+
("Top" . (""))
274+
("-||-" . (""))
275+
("|--" . (""))
276+
("--|" . (""))
277+
("bbot" . ("")) ;; similar to bN for blackboard N
278+
("btop" . (""))
279+
270280
;; Divisibility, parallelity.
271281

272282
("|" . ("")) ("|n" . (""))

0 commit comments

Comments
 (0)