今天我在vim中遇到了非常奇怪的行为。当我打开一个python文件时,有些东西会自动设置为p.ex. :sp
。如果我使用expandtab
打开第二个python文件,则filetype=python
未设置,而.vim
似乎是正确的。
我删除了.vimrc
并将filetype plugin indent on
删除为:
verbose set filetype?
在int x,y;
x= 0;
y=50;
for (int i=0; i<4; i++)
{
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(x, y, 300, 100)];
view.backgroundColor = [UIColor redColor];
[self.view addSubview: view];
y+=40;
}
的帮助下,我可以理解:
为什么会有所不同,我该如何解决?
(我使用的是vim版本:2:7.4.052-1ubuntu3)