fzf.vim

(★ 10,244)

fzf :heart: vim

파일 탐색기

  • .gitattributes
  • .gitignore
  • LICENSE
  • README.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

dir

설명 보기 ▼

파일 목록을 출력.
더 많은 정보: <https://www.cisco.com/c/en/us/td/docs/switches/datacenter/nexus5000/sw/command/reference/fund/n5k-fund-cr/n5k-fund_cmds_d.html#dir>.

dir

현재 작업 디렉토리의 파일 목록 출력:

tldr ls

자세한 내용은 원본 명령을 참고하세요:

dir

현재 디렉토리의 내용 표시:

🔍

brew install

설명 보기 ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

ctags

설명 보기 ▼

널리 사용되는 많은 프로그래밍 언어에 대해 소스 파일에 있는 언어 객체의 인덱스 (또는 태그) 파일을 생성.
더 많은 정보: <https://docs.ctags.io/en/latest/man/ctags.1.html>.

ctags {{path/to/file}}

단일 파일에 대한 태그를 생성하고, 현재 디렉터리에 "tags"라는 파일로 출력, 파일이 존재하면 덮어씀:

ctags -f {{path/to/file}} *

현재 디렉터리의 모든 파일에 대한 태그를 생성하고, 특정 파일에 출력, 파일이 존재하면 덮어씀:

ctags --recurse

현재 디렉터리와 모든 하위 디렉터리의 모든 파일에 대한 태그를 생성:

🔍

git diff

설명 보기 ▼

Show changes to tracked files.

git diff

Show unstaged changes:

git diff HEAD

Show all uncommitted changes (including staged ones):

git diff --staged

Show only staged (added, but not yet committed) changes:

🔍

git grep

설명 보기 ▼

Find strings inside tracked files in a repository.
Accepts a lot of the same flags as regular `grep`.

git grep "{{search_string}}"

Search for a string in files in the current `HEAD`:

git grep "{{search_string}}" -- "{{*.ext}}"

Search for a string in files matching a glob pattern in the current `HEAD`:

git grep --recurse-submodules "{{search_string}}"

Search for a string, including submodules:

🔍

git ls-files

설명 보기 ▼

Show information about files in the index and the working tree.

git ls-files {{[-d|--deleted]}}

Show deleted files:

git ls-files {{[-m|--modified]}}

Show modified and deleted files:

git ls-files {{[-o|--others]}}

Show ignored and untracked files:

🔍

git status

설명 보기 ▼

Show the changes to files in a Git repository.
List changed, added, and deleted files compared to the currently checked-out commit.

git status

Show untracked and changed files which are not yet added for commit:

git status {{[-s|--short]}}

Give output in short format:

git status {{[-sb|--short --branch]}}

Show output in short format along with branch info:

🔍

man

설명 보기 ▼

설명서 페이지 형식 지정 및 표시.
관련 항목: `whatis`, `apropos`.
더 많은 정보: <https://manned.org/man>.

man {{command}}

명령에 대한 설명서 페이지를 표시:

man {{[-H|--html=]}}{{browser_name}} {{command}}

섹션 7의 명령에 대한 설명서 페이지를 표시:

man 7 {{command}}

명령에 사용 가능한 모든 섹션 나열:

🔍

Locate

설명 보기 ▼

Find filenames quickly.

locate "{{pattern}}"

Look for pattern in the database. Note: The database is recomputed periodically (usually weekly or daily):

locate "{{pattern}}"

데이터베이스에서 패턴 검색 (참고: 데이터베이스는 주기적으로 다시 계산됩니다, 보통 주간 또는 일간):

locate {{[-i|--ignore-case]}} "{{pattern}}"

Look for a pattern case-insensitively:

// repository documentation