微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何将源代码粘贴到vim没有错误格式?

当我复制一个python代码,并粘贴到vim。缩进都是错误的。
但我粘贴到emacs或gedit,是对的。

这很难说明,让我们看看屏幕截图。
注意:蓝色和黄色线只是使用“缩进指南插件”。

这是源代码示例:

import threading
import time
class timer(threading.Thread): #The timer class is derived from the class threading.Thread
    def __init__(self,num,interval):
        threading.Thread.__init__(self)
        self.thread_num = num
        self.interval = interval
        self.thread_stop = False

    def run(self): #Overwrite run() method,put what you want the thread do here
        while not self.thread_stop:
            print 'Thread Object(%d),Time:%s/n' %(self.thread_num,time.ctime())
            time.sleep(self.interval)
    def stop(self):
        self.thread_stop = True


def test():
    thread1 = timer(1,1)
    thread2 = timer(2,2)
    thread1.start()
    thread2.start()
    time.sleep(10)
    thread1.stop()
    thread2.stop()
    return

if __name__ == '__main__':
    test()
自动缩进踢。

禁用它的最简单方法是:设置粘贴

06000

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐