doomemacs/modules/input/layout/+azerty.el
Henrik Lissner ad6a3d0f33
refactor: deprecate featurep! for modulep!
featurep! will be renamed modulep! in the future, so it's been
deprecated. They have identical interfaces, and can be replaced without
issue.

featurep! was never quite the right name for this macro. It implied that
it had some connection to featurep, which it doesn't (only that it was
similar in purpose; still, Doom modules are not features). To undo such
implications and be consistent with its namespace (and since we're
heading into a storm of breaking changes with the v3 release anyway),
now was the best opportunity to begin the transition.
2022-08-14 20:43:35 +02:00

81 lines
3.3 KiB
EmacsLisp

;;; input/layout/+azerty.el -*- lexical-binding: t; -*-
;; NOTE: here is roughly what the translations are:
;; previous: [ -> é
;; next: ] -> è
;; ` -> ²
;; @ -> à
(defun +layout-remap-keys-for-azerty-h ()
(setq avy-keys '(?q ?s ?d ?f ?g ?h ?j ?k ?l ?m)
lispy-avy-keys '(?q ?s ?d ?f ?g ?h ?j ?k ?l ?m ?a ?z ?e ?r ?t ?y ?u ?i ?o ?p))
(after! ace-window
(setq aw-keys '(?q ?s ?d ?f ?g ?h ?j ?k ?l ?m)))
(map! "C-z" 'evil-window-map)
(map!
:leader
:desc "Window" "z" 'evil-window-map
(:when (modulep! :ui popup)
:desc "Toggle last popup" "é" #'+popup/toggle)
:desc "Switch to last buffer" "²" #'evil-switch-to-windows-last-buffer
(:when (modulep! :ui workspaces)
(:prefix-map ("TAB" . "workspace")
:desc "Switch to last workspace" "²" #'+workspace/other
:desc "Previous workspace" "é" #'+workspace/switch-left
:desc "Next workspace" "è" #'+workspace/switch-right))
(:prefix-map ("b" . "buffer")
:desc "Previous buffer" "é" #'previous-buffer
:desc "Next buffer" "è" #'next-buffer)
(:prefix-map ("g" . "git")
(:when (modulep! :ui vc-gutter)
:desc "Jump to previous hunk" "é" #'git-gutter:previous-hunk
:desc "Jump to next hunk" "è" #'git-gutter:next-hunk))))
(defun +layout-remap-evil-keys-for-azerty-h ()
(map! :nv "à" #'evil-execute-macro
:nv "²" #'evil-goto-mark
(:when (modulep! :checkers spell)
:m "és" #'+spell/previous-error
:m "ès" #'+spell/next-error)
:n "è SPC" #'+evil/insert-newline-below
:n "é SPC" #'+evil/insert-newline-above
:n "èb" #'next-buffer
:n "éb" #'previous-buffer
:n "èf" #'+evil/next-file
:n "éf" #'+evil/previous-file
:m "èu" #'+evil:url-encode
:m "éu" #'+evil:url-decode
:m "èy" #'+evil:c-string-encode
:m "éy" #'+evil:c-string-decode
(:when (modulep! :ui vc-gutter)
:m "èd" #'git-gutter:next-hunk
:m "éd" #'git-gutter:previous-hunk)
(:when (modulep! :ui hl-todo)
:m "èt" #'hl-todo-next
:m "ét" #'hl-todo-previous)
(:when (modulep! :ui workspaces)
:n "èw" #'+workspace/switch-right
:n "éw" #'+workspace/switch-left)
:m "è#" #'+evil/next-preproc-directive
:m "é#" #'+evil/previous-preproc-directive
:m "èa" #'evil-forward-arg
:m "éa" #'evil-backward-arg
:m "èc" #'+evil/next-comment
:m "éc" #'+evil/previous-comment
:m "èe" #'next-error
:m "ée" #'previous-error
:n "èF" #'+evil/next-frame
:n "éF" #'+evil/previous-frame
:m "èh" #'outline-next-visible-heading
:m "éh" #'outline-previous-visible-heading
:m "èm" #'+evil/next-beginning-of-method
:m "ém" #'+evil/previous-beginning-of-method
:m "èM" #'+evil/next-end-of-method
:m "éM" #'+evil/previous-end-of-method
:n "éo" #'+evil/insert-newline-above
:n "èo" #'+evil/insert-newline-below
:nv "" #'+evil:apply-macro))
(+layout-remap-keys-for-azerty-h)
(when (modulep! :editor evil)
(+layout-remap-evil-keys-for-azerty-h))