GVimでタブをスペースに変換したいのですが。私の_vimrc
に次の行を追加しました。
set tabstop=2
2つのスペースで止まるように動作しますが、それでも1つのタブキーが挿入されたように見えます(後でスペースを数えるためにhキーを使用しようとしました)。
GVimにタブをスペースに変換させるにはどうすればいいのでしょうか。
IIRC、次のようなもの
set tabstop=2 shiftwidth=2 expandtab
トリックをするべきです。すでにタブがある場合は、ニースのグローバルREを使ってそれらをダブルスペースに置き換えます。
他の答えに従ってexpandtabをオンにしたら、新しい設定に従って既存のファイルを変換するための非常に便利な方法は次のとおりです。
:retab
現在のバッファで動作します。
やってみる
set expandtab
柔らかいタブ用。
既存のタブを修正するには:
:%s/\t/ /g
タブストップを2スペースに設定したので、2スペースを使用しました。
これは私のために働きました:
あなたは最初にこれをやってタブを見ることができます:
:set list
それからタブを取り替えることを可能にするためにこれをしなさい:
:set expandtab
それから
:retab
すべてのタブがスペースに置き換えられたので、次のように通常の表示に戻ることができます。
:set nolist
gg=G
はファイル全体を再インデントし、同僚からファイルに入ったタブのすべてではないにしてもほとんどを削除します。
以下の行をあなたの.vimrcに追加してください。
set expandtab
set tabstop=4
set shiftwidth=4
map <F2> :retab <CR> :wq! <CR>
ファイルをvimで開きF2を押すとタブは4つのスペースに変換されファイルは自動的に保存されます。
\t
を8つのスペースに等しくしたい場合は、次の設定を検討してください。
set softtabstop=2 tabstop=8 shiftwidth=2
これにより、<TAB>
を押すごとに2つのスペースが与えられますが、コード内の実際の\t
は依然として8文字として表示されます。
最初にファイル内のタブを検索します。/ ^ I:set expandtab:retab
働くでしょう。
expand
はタブをスペースに変換するためのunixユーティリティです。 vimで何もset
したくないのであれば、vimからシェルコマンドを使うことができます。
:!% expand -t8
これはそれが私のために働いていました:
:set tabstop=2 shiftwidth=2 expandtab | retab
この記事には、タブとスペースを扱い、それらの間で変換するための優れたvimrcスクリプトがあります。
以下のコマンドが提供されています。
Space2Tabスペースだけをインデントでタブに変換します。
Tab2Spaceインデントだけでタブをスペースに変換します。
RetabIndentSpace2Tab( 'expandtab'が設定されている場合)、またはTab2Space(それ以外の場合)を実行します。
各コマンドは、タブ列のスペース数を指定する引数を受け取ります。デフォルトでは、 'tabstop'設定が使用されています。
出典: http://vim.wikia.com/wiki/Super_retab#Script
" 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>)
これは私が最初に解決策を探しに行ったときにここで答えたよりも私を少し助けました。