From dcee0e5cf9d435731db5b7efc9132a1ae86e004d Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Mon, 21 Jan 2013 20:24:30 -0600 Subject: [PATCH] more adjustments to the c:x;r;a keystroke MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The goal is to better handle situations like this one: ╔═══╗ ║ - ║ ╚═══╝ where the hyphen should not change. original commit: a0f910c3dcf6ad40971257e9a4bd1b9ca94d3435 --- collects/framework/private/dir-chars.rkt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/collects/framework/private/dir-chars.rkt b/collects/framework/private/dir-chars.rkt index e5e195c..6935b00 100644 --- a/collects/framework/private/dir-chars.rkt +++ b/collects/framework/private/dir-chars.rkt @@ -26,19 +26,19 @@ #\╩ #\╦ #\╣ #\╝ #\╗ #\═ - #\+ #\-)) + #\+ #\- #\=)) (define rt-chars '(#\╬ #\╩ #\╦ #\╠ #\╔ #\╚ #\═ - #\+ #\-)) + #\+ #\- #\=)) (define adjustable-chars (remove-duplicates (append up-chars dn-chars lt-chars rt-chars))) (define double-barred-chars - (remove* '(#\+ #\- #\|) + (remove* '(#\+ #\- #\= #\|) adjustable-chars)) \ No newline at end of file