Elixir 대화 식 셸: 5. IEx 설정

1468 단어 elixir
Elixir 대화 식 Shell: 1. 실행 시 시스템 태그 Elixir 대화 식 Shell: 2. 상용 명령 Elixir 대화 식 Shell: 3. 로 컬 과 원 격 Shell Elixir 대화 식 Shell 만 들 기: 4. 파일 과 스 크 립 트 처리 Elixir 대화 식 Shell: 5. IEx 설정
이것 은 IEx 시리즈 5 부분 중 마지막 부분 입 니 다. 이 부분 에서 우 리 는 IEx 를 어떻게 설정 하 는 지 설명 할 것 입 니 다.
설정 문서 보이 기
iex(10)> h IEx.configure

목록 표시 수 설정
iex(11)> IEx.configure(inspect: [limit: 3])
:ok
iex(12)> [1,2,3,4,5]
[1, 2, 3, ...]

문서 제목 색상 설정
iex(13)> h Code
iex(14)> IEx.configure(colors: [doc_title: [:blue, :bright, :reverse]])
:ok
iex(15)> h Code 

IEx 현재 설정 가 져 오기
iex(18)> IEx.configuration                    
[width: 80, default_prompt: "%prefix(%counter)>", inspect: [limit: 1000],
 colors: [enabled: true, eval_interrupt: [:yellow], eval_result: [:yellow],
  eval_error: [:red], eval_info: [:normal], stack_app: [:red, :bright],
  stack_info: [:red], ls_directory: [:blue], ls_device: [:green],
  doc_bold: [:bright], doc_code: [:cyan, :bright], doc_headings: [:yellow],
  doc_inline_code: [:cyan], doc_table_heading: [:reverse],
  doc_underline: [:underline], doc_title: [:blue, :bright, :reverse]],
 history_size: 20, alive_prompt: "%prefix(%node)%counter>"]

IEx 시작 시 자동 설정
파일 편집
IEx.configure(colors: [doc_title: [:blue, :bright, :reverse]])

출력 버퍼 폭 설정
IEx.configure(width: 1000)

좋은 웹페이지 즐겨찾기