From d30e829ad44e4944303fd7788f328a571c0c038a Mon Sep 17 00:00:00 2001 From: Daniel Widerin Date: Thu, 14 Feb 2013 00:13:44 +0100 Subject: [PATCH] Align rulers to PEP8 standard Maximum of 79 characters, for flowing long blocks of text (docstrings or comments), length should be limited to 72 characters. Therefore 2 rulers would be nice. See: http://www.python.org/dev/peps/pep-0008/#maximum-line-length --- Python.sublime-settings | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python.sublime-settings b/Python.sublime-settings index 8beb554..a0f2479 100644 --- a/Python.sublime-settings +++ b/Python.sublime-settings @@ -2,5 +2,5 @@ "tab_size": 4, "translate_tabs_to_spaces": true, "detect_indentation": false, - "rulers": [80] -} \ No newline at end of file + "rulers": [72, 79] +}