From c6e8e8038fde5becd183b9f1bf7d4dffea89f775 Mon Sep 17 00:00:00 2001 From: Ben Jackson Date: Sat, 11 Jul 2020 16:51:18 +0100 Subject: [PATCH] Remove hard-coded terminal width which doesn't work on smaller width screens --- python3/vimspector/code.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python3/vimspector/code.py b/python3/vimspector/code.py index b7e88d7..b826d21 100644 --- a/python3/vimspector/code.py +++ b/python3/vimspector/code.py @@ -220,7 +220,6 @@ class CodeView( object ): options = { 'vertical': 1, - 'term_cols': 80, 'norestore': 1, 'cwd': cwd, 'env': env,