Vim copiar / colar confundindo indentaton

5

Sempre que eu copio algo de outro aplicativo e depois o colo no vim, ele atrapalha o recuo.

Por exemplo, só agora tentei copiar o arquivo manifest.json do tutorial hello-world para criar extensões chrome.

Parece assim:

{
  "manifest_version": 2,

  "name": "One-click Kittens",
  "description": "This extension demonstrates a browser action with kittens.",
  "version": "1.0",

  "permissions": [
    "https://secure.flickr.com/"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  }
}

mas, quando colo no vim, é assim:

Meuvimrcéoseguinte:

"se t_Co=256
syntax enable

set nowrap
set mouse=a
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab 
set number
set showcmd
set cursorline
set showmatch

execute pathogen#infect()
"filetype plugin indent on

"folding settings
set foldmethod=indent   "fold based on indent
set foldnestmax=10      "deepest fold is 10 levels
set nofoldenable        "dont fold by default
set foldlevel=1            

set clipboard=unnamed  "share one clipboard for everyhting    

Tem algo a ver com esta linha:

execute pathogen#infect() "filetype plugin indent on

Se eu comentar, o problema está resolvido. No entanto, isso é o que eu uso para obter recuo automático quando estou codificando em python. Existe outra maneira de obter um recuo automático?

    
por Luke 10.01.2015 / 18:17

4 respostas

6

No terminal, o Vim não consegue distinguir entre o texto digitado (onde você deseja o recuo automático) e o texto colado. Portanto, há a opção 'paste' (e 'pastetoggle' para simplificar o manuseio), que, quando definida, desabilita a formatação automática e o reconhecimento. Uma alternativa é usar o GVIM gráfico, que pode detectar isso.

Ou, você usa o acesso à área de transferência do Vim (se configurado e funcionando, que precisa experimentar) e usa os registros "* / "+ para a área de transferência de seleção / sistema, por exemplo, via "+p ou :put + . Talvez colar com o botão do meio do mouse também funcione; experimente!

    
por 10.01.2015 / 20:07
5

: definir colar

ou veja link

(herearesomecharsbecausesuperuser.comthinksshortanswersarenotanygoodanswers)

    
por 10.01.2015 / 18:43
1

Uma possibilidade, que pode não ser uma opção para você, é usar gvim em vez de vim . Este último é capaz de distinguir a colagem da digitação rápida de texto. Da ajuda de vim para :paste :

'paste'                 boolean (default off)
                         global                        {not in Vi}
        Put Vim in Paste mode.  This is useful if you want to cut or copy
        some text from one window and paste it in Vim.  This will avoid
        unexpected effects.
        Setting this option is useful when using Vim in a terminal, where Vim
        cannot distinguish between typed text and pasted text.  In the GUI, Vim
        knows about pasting and will mostly do the right thing without 'paste'
        being set.  The same is true for a terminal where Vim handles the
        mouse clicks itself.
        This option is reset when starting the GUI.  Thus if you set it in
        your .vimrc it will work in a terminal, but not in the GUI.  Setting
        'paste' in the GUI has side effects: e.g., the Paste toolbar button
        will no longer work in Insert mode, because it uses a mapping.
        When the 'paste' option is switched on (also when it was already on):
                - mapping in Insert mode and Command-line mode is disabled
                - abbreviations are disabled
                - 'textwidth' is set to 0
                - 'wrapmargin' is set to 0
                - 'autoindent' is reset
                - 'smartindent' is reset
                - 'softtabstop' is set to 0
                - 'revins' is reset
                - 'ruler' is reset
                - 'showmatch' is reset
                - 'formatoptions' is used like it is empty
        These options keep their value, but their effect is disabled:
                - 'lisp'
                - 'indentexpr'
                - 'cindent'
        NOTE: When you start editing another file while the 'paste' option is
        on, settings from the modelines or autocommands may change the
        settings again, causing trouble when pasting text.  You might want to
        set the 'paste' option again.
        When the 'paste' option is reset the mentioned options are restored to
        the value before the moment 'paste' was switched from off to on.
        Resetting 'paste' before ever setting it does not have any effect.
        Since mapping doesn't work while 'paste' is active, you need to use
        the 'pastetoggle' option to toggle the 'paste' option with some key.
    
por 10.01.2015 / 19:08
0

Uma das melhores soluções para esse problema que encontrei é usar o plug-in de colagem entre colchetes: link - isso permite que você cole diretamente no vim sem se preocupar com o recuo que vai dar errado ... e sem precisar pressionar teclas diferentes antes de colar, etc etc

    
por 06.02.2015 / 07:09