Emacs: Syntax and comments

master
Pierre Neidhardt 2015-04-26 17:17:08 +02:00
parent 5c4e3325b4
commit 62b87085ad
3 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ Example: to assign some-function to C-i, use
(define-key my-keys-minor-mode-map (kbd \"C-i\") 'some-function)"
t " my-keys" 'my-keys-minor-mode-map)
(add-hook 'minibuffer-setup-hook (lambda () (my-keys-minor-mode 0) ) )
(add-hook 'minibuffer-setup-hook (lambda () (my-keys-minor-mode 0)))
(defvar emacs-cache-folder "~/.cache/emacs/"
"Cache folder is everything we do not want to track along with

View File

@ -327,8 +327,8 @@ If DIR is t, then move left, otherwise move right."
(define-key my-keys-minor-mode-map (kbd "M-)") 'move-border-right)
(defun page-count ()
"Return page count.
Requires `count-occurences'."
"Return page count."
;; TODO: Requires `count-occurences'?
(save-restriction
(widen)
(save-excursion

View File

@ -116,7 +116,7 @@
;; Line by line scrolling
(setq scroll-step 1)
;; Useful of autofill.
;; Autofill tweak.
(setq sentence-end-double-space nil)
;; Highlight selections -- not activated by default on old Emacs.