diff options
| author | Farzin Firouzi <farzineff@gmail.com> | 2022-06-06 01:51:18 -0400 |
|---|---|---|
| committer | James <1227856+jojojames@users.noreply.github.com> | 2022-06-05 23:01:38 -0700 |
| commit | dbcdb1a2a9f26f3c17d0c1839b863212f46c9814 (patch) | |
| tree | ae8d0db3da3cd37b39f4e1bfd39b447b71633ad8 /modes/snake | |
| parent | d97e6d52c4ae99dbb96374015ff551bd50a370c7 (diff) | |
snake: initial support
Diffstat (limited to 'modes/snake')
| -rw-r--r-- | modes/snake/evil-collection-snake.el | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/modes/snake/evil-collection-snake.el b/modes/snake/evil-collection-snake.el new file mode 100644 index 0000000..42fd55a --- /dev/null +++ b/modes/snake/evil-collection-snake.el @@ -0,0 +1,43 @@ +;;; evil-collection-snake.el --- Bindings for `snake' -*- lexical-binding: t -*- + +;; Copyright (C) 2017 James Nguyen +;; Copyright (C) 2022 Farzin Firouzi + +;; 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 <http://www.gnu.org/licenses/>. + +;;; Commentary: +;; Bindings for `snake'. + +;;; Code: +(require 'evil-collection) + +(defconst evil-collection-snake-maps '(snake-mode-map)) + +;;;###autoload +(defun evil-collection-snake-setup () + "Set up `evil' bindings for `snake'." + (evil-set-initial-state 'snake-mode 'normal) + (evil-collection-define-key 'normal 'snake-mode-map + "h" 'snake-move-left + "l" 'snake-move-right + "j" 'snake-move-down + "k" 'snake-move-up + "gr" 'snake-start-game + "p" 'snake-pause-game + "q" 'quit-window + "ZQ" 'quit-window + "ZZ" 'snake-end-game)) + +(provide 'evil-collection-snake) +;;; evil-collection-snake.el ends here |
