emacs-workspace-hud
A floating workspace status HUD for Emacs, showing Git, LSP, and diagnostic state in a WebAssembly-powered egui card.
파일 탐색기
- screenshot.png
- ARCHITECTURE.md
- README.md
- WORKSPACE-HUD.md
- workspace-hud.el
- workspace-hud-tests.el
- lib.rs
- Cargo.toml
- index.html
- .gitignore
- .gitmodules
- emacs-egui
- justfile
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
clock
설명 보기 ▼
clock
시스템 시계를 설정합니다.
더 많은 정보: <https://www.cisco.com/c/en/us/td/docs/ios/fundamentals/command/reference/cf_book/cf_c1.html#clock>.
clock set {{23}}:{{59}}:{{59}} {{31}} {{april}} {{2000}}
특권 모드에서 실행하여 시스템 시계를 설정:
clock active prefer
링크 반대편과 자동 협상, (기본값: active-clock):
clock passive prefer
링크 반대편과 자동 협상, (기본값: passive-clock):
dot
설명 보기 ▼
dot
`graphviz` 파일로부터 `선형 방향` 네트워크 그래프를 렌더링.
레이아웃: `dot`, `neato`, `twopi`, `circo`, `fdp`, `sfdp`, `osage`, `patchwork`.
더 많은 정보: <https://graphviz.org/doc/info/command.html>.
dot -T {{png}} -O {{path/to/input.gv}}
입력 파일명과 출력 포맷에 기반한 파일명으로 PNG 이미지 렌더링(대문자 -O 사용):
dot -T {{svg}} -o {{path/to/image.svg}} {{path/to/input.gv}}
지정된 출력 파일명으로 SVG 이미지 렌더링(소문자 -o 사용):
dot -T {{format}} -O {{path/to/input.gv}}
PS, PDF, SVG, Fig, PNG, GIF, JPEG, JSON, DOT 포맷으로 출력물을 렌더링:
emacs
설명 보기 ▼
emacs
확장 가능, 사용자 정의 가능, 자체 문서화가 되는 실시간 디스플레이 편집기.
관련 항목: `emacsclient`.
더 많은 정보: <https://www.gnu.org/software/emacs>.
emacs {{path/to/file}}
Emacs 시작 및 파일 열기:
emacs +{{line_number}} {{path/to/file}}
지정된 줄 번호에서 파일 열기:
emacs --script {{path/to/file.el}}
Emacs Lisp 파일을 스크립트로 실행:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
just
설명 보기 ▼
just
`just`는 동일한 이름을 가진 여러 명령을 참조할 수 있습니다.
just {{recipe}}
명령 실행기에 대한 문서 보기:
just
Start a REPL (interactive shell):
just --init
V8 JavaScript 런타임에 대한 문서 보기:
rev
설명 보기 ▼
rev
텍스트 라인이나 파일을 뒤집습니다.
더 많은 정보: <https://manned.org/rev>.
rev
터미널에 입력한 텍스트 뒤집기:
rev {{path/to/file}}
Reverse each line in a file to `stdout`:
echo "hello" | rev
문자열 "hello" 뒤집기:
