এই নিবন্ধটিতে ট্যাবগুলি + স্পেসগুলি পরিচালনা করার এবং তাদের মধ্যে রূপান্তর করার জন্য একটি দুর্দান্ত ভিম্রিসি স্ক্রিপ্ট রয়েছে।
এই আদেশগুলি সরবরাহ করা হয়:
স্পেস 2 ট্যাব স্পেসগুলি কেবলমাত্র ইনডেন্টে ট্যাবগুলিতে রূপান্তর করে।
ট্যাব 2 স্পেস কেবলমাত্র ইনডেন্টে ট্যাবগুলিকে স্পেসে রূপান্তর করুন।
RetabIndent এক্সিকিউট স্পেস 2 ট্যাব (যদি 'প্রসারিত ট্যাব সেট করা থাকে), বা ট্যাব 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>)
আমি যখন প্রথম প্রথম কোনও সমাধান অনুসন্ধান করতে গিয়েছিলাম তখন উত্তরগুলির তুলনায় এটি আমাকে আরও কিছুটা সাহায্য করেছিল।