From 08af494b908ad47f3ec398569e143498c0646ca5 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Fri, 4 Apr 2025 11:22:12 +0200 Subject: [PATCH] add main shortcut --- .vim/after/ftplugin/python.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vim/after/ftplugin/python.vim b/.vim/after/ftplugin/python.vim index b594ecb5..9a3dd880 100644 --- a/.vim/after/ftplugin/python.vim +++ b/.vim/after/ftplugin/python.vim @@ -1,6 +1,6 @@ let python_highlight_all=1 -let g:linelength = 79 +let g:linelength = 88 setlocal sw=4 setlocal sts=4 @@ -18,3 +18,4 @@ let g:flake8_quickfix_height=3 let g:black_linelength = g:linelength imap t import ipdb; ipdb.set_trace() # noqa:E402,E702 # fmt: skip +imap m if __name__ == "__main__":import syssys.exit()i -- 2.39.5