«insert» 태그된 질문

1
특정 얼굴의 텍스트를 어떻게 삽입합니까?
나는 이런 식으로 만든 얼굴을 가지고있다 : (defface test-face '((t . (:height 2.0))) "A face for testing.") 그 얼굴에 텍스트를 삽입하고 싶습니다. 그러나이 방법은 얼굴없이 텍스트를 삽입합니다. (insert (propertize "text to insert" 'face 'test-face)) (let ((current-string "text to insert")) (put-text-property 1 (length current-string) 'face 'test-face) (insert current-string)) 그리고 텍스트를 먼저 …
15 faces  insert 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.