summaryrefslogtreecommitdiffstats
path: root/emacs.d/functions.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/functions.el')
-rw-r--r--emacs.d/functions.el11
1 files changed, 1 insertions, 10 deletions
diff --git a/emacs.d/functions.el b/emacs.d/functions.el
index b08efb6..6dec89f 100644
--- a/emacs.d/functions.el
+++ b/emacs.d/functions.el
@@ -88,11 +88,6 @@ Currently adds | & ! . + = - / % * , < > ? : ->"
"Find out which major-mode is currently used"
(with-current-buffer buffer-or-string major-mode))
-(defun set-column-marker ()
- "Default column markers"
- (column-marker-1 73)
- (column-marker-2 81))
-
(defun setup-system-frame-colours (&rest frame)
(let ((f (if (car frame)
(car frame)
@@ -172,7 +167,6 @@ Currently adds | & ! . + = - / % * , < > ? : ->"
0 font-lock-constant-face)
("\\b\\(\\.[0-9]+\\([eE][-+]?[0-9]+\\)?\\([lL]\\|[fF]\\|[dD]\\)?\\)\\b"
0 font-lock-constant-face)))
- (set-column-marker)
(rainbow-delimiters-mode)
(pretty-lambdas)
(auto-fill-mode 1))
@@ -185,8 +179,7 @@ Currently adds | & ! . + = - / % * , < > ? : ->"
(defun on-html-mode ()
(local-set-key [f9] 'browse-to-current-file)
- (auto-fill-mode)
- (set-column-marker))
+ (auto-fill-mode))
(defun on-markdown-mode ()
(whitespace-mode)
@@ -197,8 +190,6 @@ Currently adds | & ! . + = - / % * , < > ? : ->"
(auto-fill-mode 1))
(defun on-php-mode ()
- (column-marker-1 76)
- (column-marker-2 81)
(local-set-key [f6] 'comment-line))
(defun on-mail-mode ()