- starting init.el just basics (package, use-package, path-handlin) - include my-site-start.el that includes site-start.d directory and imports all *.el files in lexical order - functionality is imported via use-package inside the *.el file (first run: internet connection is needed to MELPA)
27 lines
1.1 KiB
EmacsLisp
27 lines
1.1 KiB
EmacsLisp
;;; 400-boxquote.el --- showing an inline arguments hints
|
|
|
|
;;; Commentary:
|
|
;; provides a set of functions for using a text quoting style that partially boxes
|
|
;; in the left hand side of an area of text.
|
|
;; such a marking style might be used to show externally included text or example code
|
|
|
|
;;; Code:
|
|
(require 'boxquote)
|
|
|
|
(global-set-key (kbd "C-c b y") 'boxquote-yank)
|
|
(global-set-key (kbd "C-c b r") 'boxquote-region)
|
|
(global-set-key (kbd "C-c b u") 'boxquote-unbox-region)
|
|
(global-set-key (kbd "C-c b t") 'boxquote-title)
|
|
(global-set-key (kbd "C-c b i") 'boxquote-insert-file)
|
|
(global-set-key (kbd "C-c b k") 'boxquote-kill)
|
|
(global-set-key (kbd "C-c b s") 'boxquote-shell-command)
|
|
|
|
(global-set-key (kbd "C-c b b") 'boxquote-buffer)
|
|
(global-set-key (kbd "C-c b p") 'boxquote-paragraph)
|
|
(global-set-key (kbd "C-c b n") 'boxquote-narrow-to-boxquote)
|
|
|
|
(global-set-key (kbd "C-c b w") 'boxquote-where-is)
|
|
(global-set-key (kbd "C-c b d f") 'boxquote-describe-function)
|
|
(global-set-key (kbd "C-c b d k") 'boxquote-describe-key)
|
|
(global-set-key (kbd "C-c b d v") 'boxquote-describe-variable)
|