Vim space and Tab Conversion

Source: Internet
Author: User

1. display the tab key

When the file contains the tab key, you cannot see it. To display it:

: Set list

Now the tab key is displayed as ^ I, and $ is displayed at the end of each line, so that you can find the spaces that may be ignored.
One disadvantage of this is that it looks ugly when there are many tabs. If you use a color terminal or GUI mode, VIM can highlight spaces and tabs.
Use the 'listchars' option:

: Set listchars = tab:>-, trail :-

Now, the tab is displayed as ">-", and the extra blank characters at the end of the line are displayed "-". It looks much better, right?

 

 

After the following code is added to. vimrc, restart Vim to generate four spaces by tab:
Set Ts = 4 (Note: ts is the abbreviation of tabstop, with four spaces in the tab width)
Set expandtab

 

For saved files, use the following method to replace spaces and tabs: 
Replace tab with space: 
: Set Ts = 4
: Set expandtab
: % Retab!

 

Replace spaces with tab:
: Set Ts = 4
: Set noexpandtab
: % Retab!

Vim space and Tab Conversion

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.