mirror of
https://github.com/larstvei/dot-emacs.git
synced 2024-11-26 07:28:31 +00:00
APL
This commit is contained in:
parent
aa1d44cdf3
commit
8ab896846f
11
init.org
11
init.org
@ -194,6 +194,7 @@
|
|||||||
expand-region ; Increase selected region by semantic units
|
expand-region ; Increase selected region by semantic units
|
||||||
focus ; Dim color of text in surrounding sections
|
focus ; Dim color of text in surrounding sections
|
||||||
golden-ratio ; Automatic resizing windows to golden ratio
|
golden-ratio ; Automatic resizing windows to golden ratio
|
||||||
|
gnu-apl-mode ; Integrate GNU APL with Emacs
|
||||||
haskell-mode ; A Haskell editing mode
|
haskell-mode ; A Haskell editing mode
|
||||||
ivy-posframe ; Using posframe to show Ivy
|
ivy-posframe ; Using posframe to show Ivy
|
||||||
jedi ; Python auto-completion for Emacs
|
jedi ; Python auto-completion for Emacs
|
||||||
@ -1206,6 +1207,16 @@
|
|||||||
(add-hook 'coq-mode-hook #'company-coq-mode)
|
(add-hook 'coq-mode-hook #'company-coq-mode)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
** APL
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(with-eval-after-load 'gnu-apl-mode
|
||||||
|
(setq gnu-apl-key-prefix ?`)
|
||||||
|
(gnu-apl--initialize-key-prefix 'gnu-apl-key-prefix ?`)
|
||||||
|
(add-hook 'gnu-apl-mode-hook (lambda () (activate-input-method "APL-Z")))
|
||||||
|
(add-hook 'gnu-apl-interactive-mode-hook (lambda () (activate-input-method "APL-Z"))))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
* Key bindings
|
* Key bindings
|
||||||
|
|
||||||
Inspired by [[http://stackoverflow.com/questions/683425/globally-override-key-binding-in-emacs][this StackOverflow post]] I keep a =custom-bindings-map= that
|
Inspired by [[http://stackoverflow.com/questions/683425/globally-override-key-binding-in-emacs][this StackOverflow post]] I keep a =custom-bindings-map= that
|
||||||
|
Loading…
Reference in New Issue
Block a user