Skip to content

Commit 9226d0e

Browse files
committed
- [X] Add quit session command
1 parent 38237ae commit 9226d0e

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

psci.el

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,12 @@ We chose to load the .psci file's content (the purescript doc proposes its use).
224224
(interactive)
225225
(psci/--run-psci-command! ":r"))
226226

227+
;;;###autoload
228+
(defun psci/quit! ()
229+
"Quit the psci session."
230+
(interactive)
231+
(psci/--run-psci-command! ":q"))
232+
227233
(defvar inferior-psci-mode-map
228234
(let ((map (make-sparse-keymap)))
229235
(define-key map (kbd "C-c C-l") 'psci/load-current-file!)

todo.org

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
#+title: backlog
22
#+author: ardumont
33

4-
* IN-PROGRESS 0.0.5 [50%]
4+
* IN-PROGRESS 0.0.5 [83%]
55
- [X] Prepare backlog
66
- [X] Improve mode description header
77
- [X] Update version
8-
- [-] Reorganize code for a better readability
8+
- [X] Reorganize code for a better readability
99
- [X] Reorganize var at the beginning of the buffer
1010
- [X] Add missing autoload property on psci function
1111
- [X] Remove dead code
1212
- [X] Reorganize private functions at the beginning of the buffer
1313
- [X] Improve psci minor mode's dosctring description
14-
- [ ] Rename functions according to fully compliant emacs conventions?
15-
- [ ] Add quit session command
14+
- [X] Add quit session command
1615
- [ ] Make psci's default completion work
1716
* DONE 0.0.4 [100%]
1817
CLOSED: [2014-10-29 Wed 20:08]

0 commit comments

Comments
 (0)