;;; 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)