Home
   DIR <- Back
       
       Vim - Convert tabs to 4x spaces
       ===============================
       
       Just in case somebody forces you to use spaces instead of tabs...
       Here's a vimrc-config that does exactly that:
       
               " convert tabs to 4x spaces
               set shiftwidth=4 smarttab
               set expandtab
               set tabstop=8 softtabstop=0