vim 다운로드 스펠 파일을 만들려면 어떻게해야합니까?


14

처음 설정할 때 spelllang적절한 스펠 파일을 자동 다운로드하라는 메시지가 표시되었습니다. 어쨌든 나는 지시가 명확하지 않아서 어떤 디렉토리로 이동해야하는지에 따라 프로세스를 중단했습니다.

이제는 :set spelllang그냥 말하지만 Warning: Cannot find word list… 다운로드를 제공하지 않습니다.

프로세스를 다시 시작하려면 어떻게해야합니까?

답변:


13

도움 이 상태 :

The plugin has a default place where to look for spell files, on the Vim ftp
server.  If you want to use another location or another protocol, set the
g:spellfile_URL variable to the directory that holds the spell files.  The
netrw plugin is used for getting the file, look there for the specific
syntax of the URL.  Example: 
    let g:spellfile_URL = 'http://ftp.vim.org/vim/runtime/spell'
You may need to escape special characters.

The plugin will only ask about downloading a language once.  If you want to
try again anyway restart Vim, or set g:spellfile_URL to another value (e.g.,
prepend a space).

각 상호 작용에서 기본 선택은 음수입니다.

예를 들어, 입력 :set spelllang=fr하고 프랑스어가 아직 설치되지 않은 경우 다음이 발생합니다 .

Cannot find spell file for "fr" in utf-8
Do you want me to try downloading it?
(Y)es, [N]o:

히트 Y마법의 언어를 다운로드

Downloading fr.utf-8.spl...
:!curl 'http://ftp.vim.org/pub/vim/runtime/spell/fr.utf-8.spl' -o '/tmp/vu98ZTF/2.spl'
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
"/tmp/vu98ZTF/2.spl" [noeol] 1122L, 571626C
In which directory do you want to write the file:
1. /home/youruser/.vim/spell
[C]ancel, (1):

적중 1(타격 Enter시 기본 Cancel동작 선택 )

This will improve making suggestions for spelling mistakes,
but it uses quite a bit of memory.
[N]o, (Y)es:

조회수 Y(또는 N/ Enter, 선택 사항 임)

Downloading fr.utf-8.sug...
:!curl 'http://ftp.vim.org/pub/vim/runtime/spell/fr.utf-8.sug' -o '/tmp/vu9
8ZTF/2.sug'
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--    26 2269k   26  596k    0     0   651k      0  0:00:03 --:--:--  0:00:03  6 64 2269k   64 1469k    0     0   767k      0  0:00:02  0:00:01  0:00:01  7"~/.vim/spell/fr.utf-8.sug" [New] 15706L, 2324315C written
Press ENTER or type command to continue

플러그인을 사용하지 않는 경우, 즉 자동 명령을 추가 한 autocmd SpellFileMissing * call Download_spell_file(expand('<amatch>'))다음 :set spell기능을 모르는 오류가 발생 하기 때문에 지침을 따르면 설명서가 도움이되지 않았습니다 Download_spell_file. 제가 유일한가요?
Zelphir Kaltstahl

@Zelphir 이해가되지 않습니다. 자동 명령이 활성화되지 않은 이유는 무엇입니까?
Christian Brabandt

@ChristianBrabandt, 문서를 복사하는 것보다 더 많은 작업을 수행하면 더 나은 답변을 얻을 수 있습니다.
엔리코 마리아 데 안젤리 스

문서가 이미 명확하게 질문에 대답하기 때문에 @EnricoMariaDeAngelis 또는 아닐 수도 있습니다.
Christian Brabandt

@ChristianBrabandt, 나는 내 뉴런의 오작동으로 인해 여기에 있다고 가정합니다.
엔리코 마리아 데 안젤리 스

1

질문을 다르게 이해합니다. "[맞춤 파일] [다운로드 하시겠습니까?"]에 "아니요"라고 대답 할 때 질문, 다운로드 옵션이 다시 나타나지 않습니다.

나는 그것을 삭제함으로써 해결했습니다. ~/.viminfo확실히 이것이 최선의 방법은 아니지만 질문에 대답합니다 (적어도 내 해석에).


Vi와 Vim에 오신 것을 환영합니다 ! 귀하의 답변을 가볍게 복사했습니다.
D. Ben Knoble
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.