소스 검색

Update my-gen-hl-line-color-dark () to reject grey color

master
10sr 5 년 전
부모
커밋
e2de625803
로그인 계정: 10sr GPG 키 ID: 7BEC428194130EB2
1개의 변경된 파일12개의 추가작업 그리고 5개의 파일을 삭제
  1. +12
    -5
      emacs.el

+ 12
- 5
emacs.el 파일 보기

@@ -783,12 +783,19 @@ found, otherwise returns nil."

(defun my-gen-hl-line-color-dark ()
"Generate color for current line in black background."
(let* ((candidates (mapcar 'number-to-string (number-sequence 0 6)))
(limit (length candidates)))
(let* ((candidates (mapcar 'number-to-string (number-sequence 1 6)))
(limit (length candidates))
(r 0) (g 0) (b 0))
(while (and (<= (abs (- r g)) 1)
(<= (abs (- g b)) 1)
(<= (abs (- b r)) 1))
(setq r (random limit))
(setq g (random limit))
(setq b (random limit)))
(format "#%s%s%s"
(nth (random limit) candidates)
(nth (random limit) candidates)
(nth (random limit) candidates)
(nth r candidates)
(nth g candidates)
(nth b candidates)
)))
;; (my-gen-hl-line-color-dark)



불러오는 중...
취소
저장