From e5f988c96b535a975e60ceb642c5ed0f46351f8e Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Tue, 23 Nov 2021 14:26:41 +0300 Subject: [PATCH] Py310 has convenient breakpoint() --- vim/.vim/ftplugin/python/autos.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/.vim/ftplugin/python/autos.vim b/vim/.vim/ftplugin/python/autos.vim index 2504553..441118a 100644 --- a/vim/.vim/ftplugin/python/autos.vim +++ b/vim/.vim/ftplugin/python/autos.vim @@ -1,7 +1,7 @@ iabbrev #u # coding: utf-8 iabbrev tt # type: iabbrev tti # type: ignore -iabbrev trace import pdb ; pdb.set_trace()pass +iabbrev trace breakpoint() iabbrev embed import code ; code.interact(local=locals()) iabbrev kargs *args, **kwargs iabbrev pyldis # pylint: disable= -- 2.44.0