Como excluir os arquivos .swp ao trabalhar remotamente

2

Eu abri um arquivo no vi, mas infelizmente enquanto o alterava, o terminal travou. Agora, quando tento abrir o mesmo arquivo novamente em uma nova sessão, ele exibe a seguinte mensagem

E325: ATTENTION
Found a swap file by the name ".searchRefineVertTabs.jsp.swp"
          owned by: nextag   dated: Tue Mar  5 03:30:12 2013
         file name: ~nt/deploy/main/main.build.3616.BR_PS_1109.2239/..../searchRefineVertTabs.jsp
          modified: YES
         user name: nextag   host name: li1
        process ID: 9241
While opening file "searchRefineVertTabs.jsp"
             dated: Tue Mar  5 03:35:51 2013
      NEWER than swap file!

(1) Another program may be editing the same file.
    If this is the case, be careful not to end up with two
    different instances of the same file when making changes.
    Quit, or continue with caution.

(2) An edit session for this file crashed.
    If this is the case, use ":recover" or "vim -r searchRefineVertTabs.jsp"
    to recover the changes (see ":help recovery").
    If you did this already, delete the swap file ".searchRefineVertTabs.jsp.swp"
    to avoid this message.

Eu quero saber como posso deletar esse arquivo .swp. Eu não consegui encontrá-lo no caminho do caminho / ... / outpdir1 '

    
por vipin8169 05.03.2013 / 12:44

2 respostas

3

Durante esse alerta, você pode pressionar D . Ou então, dê uma olhada no seu diretório atual em sua máquina local.

Editar : você também pode pesquisar o arquivo com:

find | grep ".searchRefineVertTabs.jsp.swp"
    
por Mostafa Shahverdy 05.03.2013 / 12:46
0

O arquivo .swp será gerado no local onde o arquivo original está. Então, basta excluir esse arquivo.

Suponha que você tenha arquivo.txt em / usr / local / src / , então seu arquivo .file.txt.swp será crie em / usr / local / src / .

apenas remova-o e abra o arquivo original. não lhe dará opções como readonly, edit etc

    
por Ramkee 16.08.2014 / 15:32