इस लेख में टैब + रिक्त स्थान को संभालने और उनके बीच में परिवर्तित करने के लिए एक उत्कृष्ट vimrc स्क्रिप्ट है।
ये आदेश दिए गए हैं:
Space2Tab रिक्त स्थान टैब में बदलें, केवल इंडेंट में।
Tab2Space टैब को केवल इंडेंट में रिक्त स्थान में बदलें।
RetabIndent Execute Space2Tab (यदि 'एक्सपेंडेबट सेट है'), या टैब 2स्पेस (अन्यथा)।
प्रत्येक कमांड एक तर्क को स्वीकार करता है जो टैब कॉलम में रिक्त स्थान की संख्या को निर्दिष्ट करता है। डिफ़ॉल्ट रूप से, 'टैबस्टॉप' सेटिंग का उपयोग किया जाता है।
स्रोत: 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>)
इससे मुझे उन उत्तरों की तुलना में थोड़ी अधिक मदद मिली जब मैंने पहली बार एक समाधान की खोज की थी।