Как вставить исходный код в vim без ошибок?

Когда я копирую код Python и вставляю его в vim. все отступы ошибочны. но вставляю в emacs или gedit, правильно.

это сложно описать, давайте посмотрим на скриншот. Обратите внимание: синяя и желтая линии просто используют «плагин направляющих отступов». the screenshot

Это пример исходного кода:

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()
23
задан bk. 16 September 2015 в 19:32
поделиться