-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno-bridge-echo.el
41 lines (35 loc) · 1.18 KB
/
deno-bridge-echo.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
;;; deno-bridge-echo.el --- Description -*- lexical-binding: t; -*-
;;
;; Copyright (C) 2023 nailuoGG
;;
;; Author: nailuoGG <>
;; Maintainer: nailuoGG <>
;; Created: January 12, 2023
;; Modified: January 12, 2023
;; Version: 0.0.1
;; Keywords: abbrev bib c calendar comm convenience data docs emulations extensions faces files frames games hardware help hypermedia i18n internal languages lisp local maint mail matching mouse multimedia news outlines processes terminals tex tools unix vc wp
;; Homepage: https://github.com/liujiale/deno-bridge-echo
;; Package-Requires: ((emacs "24.3"))
;;
;; This file is not part of GNU Emacs.
;;
;;; Commentary:
;;
;; Description
;;
;;; Code:
(require 'deno-bridge)
(setq deno-bridge-echo-ts-path (concat (file-name-directory load-file-name) "deno-bridge-echo.ts"))
(defun deno-bridge-echo-start ()
"Start deno bridge echo."
(interactive)
(deno-bridge-start "deno-bridge-echo" deno-bridge-echo-ts-path))
(defun deno-bridge-echo-restart ()
"Restart deno bridge echo and show process."
(interactive)
(deno-bridge-exit)
(deno-bridge-echo-start)
(list-processes))
(deno-bridge-echo-start)
(provide 'deno-bridge-echo)
;;; deno-bridge-echo.el ends here