6

Всякий раз, когда я копирую что-то из другого приложения и затем вставляю это в vim, это портит отступ.

Например, только что я попытался скопировать файл manifest.json из учебника hello-world для создания расширений chrome.

Это выглядит так:

{
  "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"
  }
}

но когда я вставляю его в vim, это выглядит так:

Мой vimrc выглядит следующим образом:

"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    

Это как-то связано с этой строкой:

execute pathogen#infect() "filetype plugin indent on

Если я это закомментирую, проблема решена. Тем не менее, это то, что я использую для достижения автоматического отступа, когда я пишу код на python. Есть ли другой способ получить авто-отступ?

4 ответа4

7

: установить пасту

или посмотрите http://vim.wikia.com/wiki/Toggle_auto-indenting_for_code_paste

(herearesomecharsbecausesuperuser.comthinksshortanswersarenotanygoodanswers)

6

В терминале Vim не может различить напечатанный текст (где вы хотите сделать автоматический отступ) и вставленный текст. Так что есть опция 'paste''pastetoggle' для упрощения обработки), которая при установке отключает автоформатирование и -индентирование. Альтернативой является использование графического GVIM, который может это обнаружить.

Или вы используете доступ к буферу обмена Vim (если он настроен и работает, что вам нужно попробовать) и используете регистры "* / "+ для выбора / системного буфера обмена, например, через "+p или :put + . Может быть, вставка с помощью средней кнопки мыши также просто работает; попробуйте!

1

Одна из возможностей, которая может не подходить вам, - использовать gvim вместо vim . Последний способен отличить вставку от быстрого набора текста. Из справки vim для :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.
0

Одним из лучших решений этой проблемы, с которым я столкнулся, является использование плагина для вставки в скобках: https://github.com/ConradIrwin/vim-bracketed-paste - это позволяет вставлять файлы непосредственно в vim, не беспокоясь об отступе. идет наперекосяк ... и без необходимости нажимать разные клавиши перед вставкой и т. д.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .