Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
(import (scheme base) | |
(scheme write) | |
(scheme eval) | |
(chibi show) | |
(chibi match) | |
(chibi test)) | |
(define *meta-continuation* | |
(lambda (value) | |
(error "No top-level RESET" value))) |
(local a (require :conjure.aniseed.core)) | |
;;(import-macros {: def} :aniseed) | |
(local extract (require :conjure.extract)) | |
(local str (require :conjure.aniseed.string)) | |
(local nvim (require :conjure.aniseed.nvim)) | |
(local stdio (require :conjure.remote.stdio)) | |
(local config (require :conjure.config)) | |
(local text (require :conjure.text)) | |
(local mapping (require :conjure.mapping)) | |
(local client (require :conjure.client)) |
commit ea830e03d4d4562b1ff225940f65bceddd9cad6c | |
Author: Hayaki Saito <[email protected]> | |
Date: Sun Jun 11 23:46:45 2017 +0900 | |
Add sixel graphics support | |
Signed-off-by: Hayaki Saito <[email protected]> | |
diff --git a/Makefile b/Makefile | |
index d8595fe..a25d040 100644 |
The package that linked you here is now pure ESM. It cannot be require()
'd from CommonJS.
This means you have the following choices:
import foo from 'foo'
instead of const foo = require('foo')
to import the package. You also need to put "type": "module"
in your package.json and more. Follow the below guide.await import(…)
from CommonJS instead of require(…)
.(defun tablist-get-id () | |
(interactive) | |
(message (tabulated-list-get-id))) | |
(defun tablist-get-emtry () | |
(interactive) | |
(message "%s" (tabulated-list-get-entry))) | |
Eval: (documentation (lambda () "do stuff" 123)) |