vim은 파일이 많다고 주장하지만 그렇지 않습니다.

vim은 파일이 많다고 주장하지만 그렇지 않습니다.

내 디렉토리를 입력하면 ls다음을 얻습니다.

README.md lib       sdf.t     t.t       t1.t      t2.t      tt.t

나는 vim에 있고 다음을 입력하면 :find *.t다음을 얻습니다.too many file names

어떻게 되어가나요?

vim 경로 변수를 인쇄하면 다음과 같은 결과를 얻습니다.

.,/usr/include,,,**

답변1

인수는 :find정확한 단일 파일 이름이어야 합니다. *.t확장되었으므로 명령은 :find sdf.t t.t t1.t t2.t tt.t실제로 파일 이름이 너무 많습니다.

~에서:help :find:

                                    :fin :find
:fin[d][!] [++opt] [+cmd] {file}
    Find {file} in 'path' and then :edit it.
    {not available when the +file_in_path feature was disabled at compile time}

관련 정보