2014-12-23 06:43:01 +00:00
|
|
|
#lang racket/base
|
|
|
|
|
|
|
|
(provide fundamental-mode)
|
|
|
|
|
2014-12-23 16:09:22 +00:00
|
|
|
(require racket/set)
|
|
|
|
(require racket/match)
|
2014-12-27 23:16:28 +00:00
|
|
|
(require "../api.rkt")
|
2014-12-23 06:43:01 +00:00
|
|
|
|
|
|
|
(define fundamental-mode (make-mode "fundamental"))
|
|
|
|
|
2014-12-23 16:49:17 +00:00
|
|
|
(define-command fundamental-mode (self-insert-command buf #:keyseq keyseq)
|
2014-12-23 16:09:22 +00:00
|
|
|
(match keyseq
|
|
|
|
[(list (key (? char? ch) modifiers)) #:when (set-empty? (set-remove modifiers 'shift))
|
2014-12-23 16:49:17 +00:00
|
|
|
(buffer-insert! buf (string->rope (string ch)))]
|
2014-12-23 16:09:22 +00:00
|
|
|
[_ #f]))
|
2014-12-23 06:43:01 +00:00
|
|
|
|
2014-12-23 16:49:17 +00:00
|
|
|
(define-command fundamental-mode (unbound-key-sequence buf #:keyseq keyseq)
|
2014-12-27 23:16:28 +00:00
|
|
|
(invoke (command 'self-insert-command buf #:keyseq keyseq)))
|
2014-12-23 06:43:01 +00:00
|
|
|
|
|
|
|
(define-key fundamental-mode (list "C-q" '#:default) self-insert-command)
|
|
|
|
|
2014-12-23 16:49:17 +00:00
|
|
|
(define-command fundamental-mode (newline buf)
|
2014-12-23 06:43:01 +00:00
|
|
|
#:bind-key "C-m"
|
|
|
|
#:bind-key "C-j"
|
2014-12-23 16:49:17 +00:00
|
|
|
(buffer-insert! buf (string->rope "\n")))
|
2014-12-23 06:43:01 +00:00
|
|
|
|
|
|
|
(define (move-forward-n-lines buf count)
|
|
|
|
(for ((i count))
|
|
|
|
(buffer-move-to-end-of-line! buf)
|
|
|
|
(buffer-move-by! buf 1)))
|
|
|
|
|
|
|
|
(define (move-backward-n-lines buf count)
|
|
|
|
(for ((i count))
|
|
|
|
(buffer-move-to-start-of-line! buf)
|
|
|
|
(buffer-move-by! buf -1)))
|
|
|
|
|
|
|
|
(define (move-to-column buf col)
|
|
|
|
(define eol-pos (buffer-end-of-line buf))
|
|
|
|
(buffer-move-to-start-of-line! buf)
|
|
|
|
(buffer-move-by! buf (min col (- eol-pos (buffer-pos buf)))))
|
|
|
|
|
2014-12-23 16:49:17 +00:00
|
|
|
(define-command fundamental-mode (forward-char buf #:prefix-arg [count 1])
|
2014-12-23 06:43:01 +00:00
|
|
|
#:bind-key "C-f"
|
|
|
|
#:bind-key "<right>"
|
2014-12-23 16:49:17 +00:00
|
|
|
(buffer-move-by! buf count))
|
2014-12-23 06:43:01 +00:00
|
|
|
|
2014-12-23 16:49:17 +00:00
|
|
|
(define-command fundamental-mode (backward-char buf #:prefix-arg [count 1])
|
2014-12-23 06:43:01 +00:00
|
|
|
#:bind-key "C-b"
|
|
|
|
#:bind-key "<left>"
|
2014-12-23 16:49:17 +00:00
|
|
|
(buffer-move-by! buf (- count)))
|
2014-12-23 06:43:01 +00:00
|
|
|
|
2014-12-23 16:49:17 +00:00
|
|
|
(define-command fundamental-mode (next-line buf #:prefix-arg [count 1])
|
2014-12-23 06:43:01 +00:00
|
|
|
#:bind-key "C-n"
|
|
|
|
#:bind-key "<down>"
|
|
|
|
(define col (buffer-column buf))
|
|
|
|
(move-forward-n-lines buf count)
|
|
|
|
(move-to-column buf col))
|
|
|
|
|
2014-12-23 16:49:17 +00:00
|
|
|
(define-command fundamental-mode (prev-line buf #:prefix-arg [count 1])
|
2014-12-23 06:43:01 +00:00
|
|
|
#:bind-key "C-p"
|
|
|
|
#:bind-key "<up>"
|
|
|
|
(define col (buffer-column buf))
|
|
|
|
(move-backward-n-lines buf count)
|
|
|
|
(move-to-column buf col))
|
|
|
|
|
2014-12-23 16:49:17 +00:00
|
|
|
(define-command fundamental-mode (move-end-of-line buf #:prefix-arg [count 1])
|
2014-12-23 06:43:01 +00:00
|
|
|
#:bind-key "C-e"
|
|
|
|
#:bind-key "<end>"
|
|
|
|
(when (positive? count) (move-forward-n-lines buf (- count 1)))
|
|
|
|
(buffer-move-to-end-of-line! buf))
|
|
|
|
|
2014-12-23 16:49:17 +00:00
|
|
|
(define-command fundamental-mode (move-beginning-of-line buf #:prefix-arg [count 1])
|
2014-12-23 06:43:01 +00:00
|
|
|
#:bind-key "C-a"
|
|
|
|
#:bind-key "<home>"
|
|
|
|
(when (positive? count) (move-forward-n-lines buf (- count 1)))
|
|
|
|
(buffer-move-to-start-of-line! buf))
|
|
|
|
|
2014-12-23 16:49:17 +00:00
|
|
|
(define-command fundamental-mode (delete-backward-char buf #:prefix-arg [count 1])
|
2014-12-23 06:43:01 +00:00
|
|
|
#:bind-key "<backspace>"
|
|
|
|
#:bind-key "C-h" ;; differs from GNU emacs
|
|
|
|
(buffer-region-update! buf
|
|
|
|
(lambda (_deleted) (empty-rope))
|
|
|
|
#:mark (- (buffer-pos buf) count)))
|
|
|
|
|
2014-12-23 16:49:17 +00:00
|
|
|
(define-command fundamental-mode (delete-forward-char buf #:prefix-arg [count 1])
|
2014-12-23 06:43:01 +00:00
|
|
|
#:bind-key "<delete>"
|
|
|
|
#:bind-key "C-d"
|
|
|
|
(buffer-region-update! buf
|
|
|
|
(lambda (_deleted) (empty-rope))
|
|
|
|
#:mark (+ (buffer-pos buf) count)))
|
|
|
|
|
2014-12-23 16:49:17 +00:00
|
|
|
(define-command fundamental-mode (beginning-of-buffer buf #:prefix-arg [tenths 0])
|
2014-12-23 06:43:01 +00:00
|
|
|
#:bind-key "M-<"
|
|
|
|
#:bind-key "C-<home>"
|
|
|
|
#:bind-key "<begin>"
|
|
|
|
(if (eq? tenths '#:prefix) (set! tenths 0) (buffer-mark! buf))
|
|
|
|
(buffer-move-to! buf (* (buffer-size buf) (max 0 (min 10 tenths)) 1/10)))
|
|
|
|
|
2014-12-23 16:49:17 +00:00
|
|
|
(define-command fundamental-mode (end-of-buffer buf #:prefix-arg [tenths 0])
|
2014-12-23 06:43:01 +00:00
|
|
|
#:bind-key "M->"
|
|
|
|
#:bind-key "C-<end>"
|
|
|
|
(if (eq? tenths '#:prefix) (set! tenths 0) (buffer-mark! buf))
|
|
|
|
(buffer-move-to! buf (* (buffer-size buf) (- 10 (max 0 (min 10 tenths))) 1/10)))
|
|
|
|
|
2014-12-23 16:49:17 +00:00
|
|
|
(define-command fundamental-mode (exchange-point-and-mark buf)
|
2014-12-23 06:43:01 +00:00
|
|
|
#:bind-key "C-x C-x"
|
|
|
|
(define m (buffer-mark-pos buf))
|
|
|
|
(when m
|
|
|
|
(define p (buffer-pos buf))
|
|
|
|
(buffer-mark! buf p)
|
|
|
|
(buffer-move-to! buf m)))
|
|
|
|
|
2014-12-23 16:49:17 +00:00
|
|
|
(define-command fundamental-mode (set-mark-command buf #:prefix-arg arg)
|
2014-12-23 06:43:01 +00:00
|
|
|
#:bind-key "C-@"
|
|
|
|
#:bind-key "C-space"
|
|
|
|
(if (eq? arg '#:prefix)
|
|
|
|
(let ((m (buffer-mark-pos buf)))
|
|
|
|
(and m (buffer-move-to! buf m)))
|
|
|
|
(buffer-mark! buf)))
|