;; boon-emacs.el --- Emacs idiomatic key bindings for boon. -*- lexical-binding: t; -*-
;; Copyright (C) 2019-2020 Bernd Rellermeyer
;; Author: Bernd Rellermeyer <bernd.rellermeyer@t-online.de>
;; Keywords: convenience
;; Version: 2.0
;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Commentary:
;; This file defines Emacs idiomatic or mnemonic key bindings for
;; boon.
;;; Code:
;; Some key bindings defined in boon-key.el are modified in order to
;; make some Special mode-like key bindings. They are commented out
;; by default.
;; (define-key boon-command-map "_" 'undo)
;; (define-key boon-command-map "-" 'negative-argument)
;; (define-key boon-command-map "@" 'boon-drop-mark)
;; (define-key boon-command-map " " 'scroll-up-command)
;; (define-key boon-command-map [?\S-\ ] 'scroll-down-command)
;; (define-key boon-command-map "\C-?" 'scroll-down-command)
;; (define-key boon-command-map [S-backspace] 'scroll-up-command)
;; (define-key boon-command-map [S-delete] 'scroll-up-command)
;;; boon-emacs.el ends here