O que [convertido] significa na parte inferior do vim?

32

Eu tenho um arquivo de log, e quando eu abro via vim, ele não parece legível, e ele [convertido] na parte inferior. O que [convertido] significa?

Existe uma maneira de corrigir o problema de formato para que seja legível por humanos?

    
por Mingyu 24.04.2014 / 05:49

3 respostas

26

Isso significa que vim detectou que o arquivo não correspondeu ao conjunto de caracteres fornecido pela sua localidade e fez uma conversão. Se você executar o comando :set de vim :

:set
--- Options ---
  autoindent          fileformat=dos      scroll=7            textwidth=70
  background=dark     filetype=asciidoc   shiftwidth=2        ttyfast
  cscopetag           helplang=en         softtabstop=2       ttymouse=sgr
  cscopeverbose       hlsearch            syntax=asciidoc
noendofline           list                tabpagemax=3
  expandtab           ruler               textmode
  backspace=indent,eol,start
  comments=s1:/*,ex:*/,://,b:#,:%,:XCOMM,fb:-,fb:*,fb:+,fb:.,fb:>
  cscopeprg=/usr/bin/cscope
  fileencoding=utf-8
  fileencodings=ucs-bom,utf-8,latin1

Observe as duas últimas opções, fileencoding & fileencodings .

O primeiro é a codificação usada para o arquivo atual, o segundo é uma vírgula lista separada de codificações reconhecidas.

Quando a mensagem vim estiver sendo informada, você concluirá a conversão do arquivo de fileencoding para encoding .

Confira :help fileencoding ou :help encoding para obter detalhes adicionais.

Referência

Encontrei o tópico abaixo, que usei como fonte quando isso foi respondido. O site original desapareceu (acessível no histórico desta resposta), por isso estou movendo o conteúdo desse segmento aqui para o bem da posteridade. O link ainda estava na Wayback Machine .

#1 Eli the Bearded January 21st, 2004 - 06:51 pm ET | Report spam
In comp.os.linux.misc, Leon. wrote:
Hide the quote
"Gaétan Martineau" wrote in message
news:E9jLb.2903$
> [ system_notes]$ vi installation_chouette.txt
> What means the [converted] at the bottom of the screen, as in:
> "installation_chouette.txt" [converted] 2576L, 113642C

It means that vim detected that the file did not match the
charset given by your locale and made a conversion. What does

:set

Tell you about "fileencoding" and "fileencodings"? The first is
the encoding used for the current file, the second is a comma
separated list of recognized encodings.

Hide the quote
> This file has accented characters. How can I save the file so that if I
> reload if again, I do not see "converted"?



Figure out what charset you want, and then

:set fileencoding=[charset]
:w

Hide the quote
It means deleting the Microsoft Dos/ Windows CR LF end of lines, to just
LF - unix standard end of lines.

It does not. If you open a file with DOS line ends, vim reports [dos]
after the filename, not [converted]. If you do have a dos file that
you wish to convert to unix line ends, you can

:set fileformat=unix
:w

Elijah
    
por 24.04.2014 / 06:05
8

No modo de comando vim , digite:

:help read-messages

Você pode ver:

[converted]      conversion from 'fileencoding' to
                 'encoding' done

Em geral, isso significa que o vim detectou que o arquivo não correspondia ao charset dado pelo seu local e fez uma conversão.

Para ver mais detalhes, tente :help fileencoding , :help fileencodings .

    
por 24.04.2014 / 06:08
1

Isso significa que o arquivo no disco não usa o mesmo conjunto de caracteres que a área de memória do Vim, e que a conversão de um para o outro foi bem-sucedida. Pressione a tecla de escape e digite este comando.

:set fileformat=unix

Salve o arquivo e tente ler novamente.

    
por 24.04.2014 / 06:05

Tags