加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

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

发布时间:2020-12-15 19:17:21 所属栏目:安全 来源:网络整理
导读:当我复制一个python代码,并粘贴到vim。缩进都是错误的。 但我粘贴到emacs或gedit,是对的。 这很难说明,让我们看看屏幕截图。 注意:蓝色和黄色线只是使用“缩进指南插件”。 这是源代码示例: import threadingimport timeclass timer(threading.Thread):
当我复制一个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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读