BIBLIOGRAPHY

History

  • [2025-03-20 Thu 10:36] transient 만들음

|2025-03-20 Thu 10:36|

@user 이맥스에서 위에 있는 statement를 한 번에 visual block으로 선택하는 방법은?

(if (= (+ 3 4) 7)
  "they are equal"
  "they are not equal")
 
(+ 3 1)  ; cursor here

@assistant C-M-u (backward-up-list)로 리스트 바깥으로 이동한 다음 C-M-d (down-list)로 리스트 안으로 들어가고 C-M-SPC (mark-sexp)로 선택하세요.

@user

*