fixed format, again

This commit is contained in:
TLINDEN
2016-05-14 20:11:26 +02:00
parent 11e520131b
commit 7de36a7b17

View File

@@ -32,8 +32,6 @@
;; key stroke. As visual feedback the thing to be deleted will be ;; key stroke. As visual feedback the thing to be deleted will be
;; highlighted shortly. ;; highlighted shortly.
;;; Description:
;; The default key binding is C-d, but you may also bind it to C-k or ;; The default key binding is C-d, but you may also bind it to C-k or
;; whatever you wish. ;; whatever you wish.
@@ -53,6 +51,8 @@
;; something else in between, it starts from scratch (i.e. delete ;; something else in between, it starts from scratch (i.e. delete
;; word). ;; word).
;;; Installation:
;; To use, save viking-mode.el to a directory in your load-path. ;; To use, save viking-mode.el to a directory in your load-path.
;; Add something like this to your config: ;; Add something like this to your config:
@@ -68,6 +68,8 @@
;; (viking-global-mode) ;; (viking-global-mode)
;;; Customize:
;; By default viking-mode doesn't really delete things, everything ;; By default viking-mode doesn't really delete things, everything
;; remains available for yanking in the kill ring. However, you may ;; remains available for yanking in the kill ring. However, you may
;; turn it into berserk mode by setting 'viking-really-delete to t: ;; turn it into berserk mode by setting 'viking-really-delete to t:
@@ -78,8 +80,6 @@
;; (define-key viking-mode-map (kbd "C-k") 'vk/kill-thing-at-point) ;; (define-key viking-mode-map (kbd "C-k") 'vk/kill-thing-at-point)
;;
;; In case you don't like the default key binding cascade, you may ;; In case you don't like the default key binding cascade, you may
;; also use separate bindings for each kill function, e.g.: ;; also use separate bindings for each kill function, e.g.:
@@ -98,6 +98,8 @@
;; M-x customize-group (select viking-mode) ;; M-x customize-group (select viking-mode)
;;; Tips:
;; Besides, the primary function of viking-mode is vk/last-key-repeats, ;; Besides, the primary function of viking-mode is vk/last-key-repeats,
;; which returns the number of times the last key have been pressed. ;; which returns the number of times the last key have been pressed.
;; This can be used for other things as well, for example: ;; This can be used for other things as well, for example:
@@ -140,6 +142,9 @@
;; repeat: goto beginning of current buffer ;; repeat: goto beginning of current buffer
;; (and the same with <end> in the other direction) ;; (and the same with <end> in the other direction)
;;; Reporting Bugs:
;; Goto https://github.com/tlinden/viking-mode and file a new issue.