diff --git a/evil-collection-edbi.el b/evil-collection-edbi.el new file mode 100644 index 0000000..81dd08d --- /dev/null +++ b/evil-collection-edbi.el @@ -0,0 +1,103 @@ +;;; evil-collection-edbi.el --- Evil bindings for EDBI -*- lexical-binding: t -*- + +;; Copyright (C) 2019 Pierre Neidhardt + +;; Author: James Nguyen +;; Maintainer: James Nguyen +;; Pierre Neidhardt +;; URL: https://github.com/emacs-evil/evil-collection +;; Version: 0.0.1 +;; Package-Requires: ((emacs "25.1")) +;; Keywords: evil, database, tools + +;; This program 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 3 of the License, or +;; (at your option) any later version. + +;; This program 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 this program. If not, see . + +;;; Commentary: +;; Evil bindings for EDBI. + +;;; Code: +(require 'evil-collection) +(require 'edbi nil t) + +(defconst evil-collection-edbi-maps '(edbi:dbview-query-result-keymap + edbi:sql-mode-map)) + +(defun evil-collection-edbi-dbview-setup () + "The `ctbl:table-mode-map' and `edbi:dbview-keymap' are stored +as local maps and are not bound to any mode. As such, the only +way to add Evil bindings to the dbview is to overwrite the +default bindings." + (setq ctbl:table-mode-map + (ctbl:define-keymap + '( + ("k" . ctbl:navi-move-up) + ("j" . ctbl:navi-move-down) + ("h" . ctbl:navi-move-left) + ("l" . ctbl:navi-move-right) + + ("gc" . ctbl:navi-jump-to-column) + + ("$" . ctbl:navi-move-right-most) + ("0" . ctbl:navi-move-left-most) + + ("gr" . ctbl:action-update-buffer) + + ("g?" . ctbl:describe-bindings) + + ([mouse-1] . ctbl:navi-on-click) + ("C-m" . ctbl:navi-on-click) + ("RET" . ctbl:navi-on-click)))) + + (setq edbi:dbview-keymap + (epc:add-keymap + ctbl:table-mode-map + '(("gr" . edbi:dbview-update-command) + ("SPC" . edbi:dbview-show-tabledef-command) + ("c" . edbi:dbview-query-editor-command) + ("C" . edbi:dbview-query-editor-new-command) + ("C-m" . edbi:dbview-show-table-data-command) + ("q" . edbi:dbview-quit-command))))) + +;;;###autoload +(defun evil-collection-edbi-setup () + "Set up `evil' bindings for EDBI." + (evil-collection-edbi-dbview-setup) + (evil-collection-define-key 'normal 'edbi:dbview-query-result-keymap + "0" 'ctbl:navi-move-left-most + "$" 'ctbl:navi-move-right-most + + "h" 'ctbl:navi-move-left + "j" 'ctbl:navi-move-down + "k" 'ctbl:navi-move-up + "l" 'ctbl:navi-move-right + + "gc" 'ctbl:navi-jump-to-column + + "g?" 'ctbl:describe-bindings + + ;; motion + "gr" 'ctbl:action-update-buffer + + ;; quit + "q" 'edbi:dbview-query-result-quit-command + "ZQ" 'evil-quit + "ZZ" 'quit-window) + + (evil-collection-define-key 'normal 'edbi:sql-mode-map + "q" 'edbi:dbview-query-editor-quit-command + (kbd "C-n") 'edbi:dbview-query-editor-history-forward-command + (kbd "C-p") 'edbi:dbview-query-editor-history-back-command)) + +(provide 'evil-collection-edbi) +;;; evil-collection-edbi.el ends here diff --git a/evil-collection.el b/evil-collection.el index 7839421..8cbde5d 100644 --- a/evil-collection.el +++ b/evil-collection.el @@ -113,6 +113,7 @@ See https://github.com/emacs-evil/evil-collection/issues/60 for more details.") dired doc-view ebib + edbi edebug ediff eglot