#elisp 맘 편히 path 조립
path를 만들 때, 가장 귀찮은 건 디렉터리 구분자를 넣는 것이다. 귀찮은 사람이 어디 한둘이겠나? 그래서 대부분 Path.Combine 같은 helper 함수를 만들어 놓는다.
path를 만들 때, 가장 귀찮은 건 디렉터리 구분자를 넣는 것이다. 귀찮은 사람이 어디 한둘이겠나? 그래서 대부분 Path.Combine 같은 helper 함수를 만들어 놓는다.
(setq windows? (eq system-type 'windows-nt)) (when windows? (let ((bash-dir "C:/Program Files (x86)/Git/bin")) (setq explicit-shell-file-name ...