我想将制表符转换为gVim中的空格。我添加了以下一行到我的_vimrc:

set tabstop=2

它可以在两个空格处停止,但它看起来仍然像插入了一个制表键(之后我尝试使用h键来计数空格)。

我不确定我应该做什么让gVim转换制表符到空格?


当前回答

Try

set expandtab

对于软标签。

修复已存在的标签:

:%s/\t/  /g

我用了两个空格,因为你已经把制表符设置为2个空格。

其他回答

Try

set expandtab

对于软标签。

修复已存在的标签:

:%s/\t/  /g

我用了两个空格,因为你已经把制表符设置为2个空格。

gg=G将重新缩进整个文件,并删除我从同事那里获得的文件中的大部分(如果不是全部的话)选项卡。

IIRC,比如:

set tabstop=2 shiftwidth=2 expandtab

应该能行。如果你已经有制表符,那么在后面加上一个漂亮的全局正则,用双空格替换它们。

如果您已经有想要替换的选项卡,

:retab

首先在你的文件中搜索tab: /^I :设置expandtab : retab

将工作。

本文提供了一个出色的vimrc脚本,用于处理制表符+空格,并在它们之间进行转换。

提供以下命令: 将空格转换为制表符,只能缩进。 Tab2Space将制表符转换为空格,只能缩进。 RetabIndent执行Space2Tab(如果'expandtab'被设置),或Tab2Space(否则)。 每个命令接受一个参数,该参数指定制表符列中的空格数。默认情况下,使用'tabstop'设置。

来源:http://vim.wikia.com/wiki/Super_retab脚本

" Return indent (all whitespace at start of a line), converted from
" tabs to spaces if what = 1, or from spaces to tabs otherwise.
" When converting to tabs, result has no redundant spaces.
function! Indenting(indent, what, cols)
  let spccol = repeat(' ', a:cols)
  let result = substitute(a:indent, spccol, '\t', 'g')
  let result = substitute(result, ' \+\ze\t', '', 'g')
  if a:what == 1
    let result = substitute(result, '\t', spccol, 'g')
  endif
  return result
endfunction

" Convert whitespace used for indenting (before first non-whitespace).
" what = 0 (convert spaces to tabs), or 1 (convert tabs to spaces).
" cols = string with number of columns per tab, or empty to use 'tabstop'.
" The cursor position is restored, but the cursor will be in a different
" column when the number of characters in the indent of the line is changed.
function! IndentConvert(line1, line2, what, cols)
  let savepos = getpos('.')
  let cols = empty(a:cols) ? &tabstop : a:cols
  execute a:line1 . ',' . a:line2 . 's/^\s\+/\=Indenting(submatch(0), a:what, cols)/e'
  call histdel('search', -1)
  call setpos('.', savepos)
endfunction

command! -nargs=? -range=% Space2Tab call IndentConvert(<line1>,<line2>,0,<q-args>)
command! -nargs=? -range=% Tab2Space call IndentConvert(<line1>,<line2>,1,<q-args>)
command! -nargs=? -range=% RetabIndent call IndentConvert(<line1>,<line2>,&et,<q-args>)

当我第一次寻找解决方案时,这比这里的答案对我的帮助要大一些。