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

前端之家收集整理的这篇文章主要介绍了如何将源代码粘贴到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

原文链接:https://www.f2er.com/bash/387862.html

猜你在找的Bash相关文章