标签: tab
vim 重设tab和空格
为了解决 python 文件从A到B,格式不匹配的问题 TAB替换为空格 :set ts=4 :set expandtab :%retab! 空格替换为TAB :set ts=4 :set no
...Read more...
vim 删除行首/行尾空格和tab
python 命令行 tab 功能
> code import sys import readline import rlcompleter
...Read more...
vim设置tab为4个空格
vim按tab产生4个空格 set ts=4 (ts是tabstop的缩写) set expandtab
...Read more...