Minor change
This commit is contained in:
parent
c07fccb701
commit
555cc79d89
1 changed files with 2 additions and 2 deletions
|
@ -179,7 +179,7 @@ Will only occur if prelude-whitespace is also enabled."
|
||||||
|
|
||||||
;; note - this should be after volatile-highlights is required
|
;; note - this should be after volatile-highlights is required
|
||||||
;; add the ability to copy and cut the current line, without marking it
|
;; add the ability to copy and cut the current line, without marking it
|
||||||
(defadvice kill-ring-save (before slick-copy activate compile)
|
(defadvice kill-ring-save (before smart-copy activate compile)
|
||||||
"When called interactively with no active region, copy a single line instead."
|
"When called interactively with no active region, copy a single line instead."
|
||||||
(interactive
|
(interactive
|
||||||
(if mark-active (list (region-beginning) (region-end))
|
(if mark-active (list (region-beginning) (region-end))
|
||||||
|
@ -187,7 +187,7 @@ Will only occur if prelude-whitespace is also enabled."
|
||||||
(list (line-beginning-position)
|
(list (line-beginning-position)
|
||||||
(line-beginning-position 2)))))
|
(line-beginning-position 2)))))
|
||||||
|
|
||||||
(defadvice kill-region (before slick-cut activate compile)
|
(defadvice kill-region (before smart-cut activate compile)
|
||||||
"When called interactively with no active region, kill a single line instead."
|
"When called interactively with no active region, kill a single line instead."
|
||||||
(interactive
|
(interactive
|
||||||
(if mark-active (list (region-beginning) (region-end))
|
(if mark-active (list (region-beginning) (region-end))
|
||||||
|
|
Loading…
Reference in a new issue