From f7003b103415c0afac24dbc14686d67791a40c66 Mon Sep 17 00:00:00 2001 From: KatieK Date: Wed, 20 Nov 2013 12:44:37 -0800 Subject: [PATCH] Updated setting for "afn_insert_dimensions" to string I don't know about the other options, but I found that setting "afn_insert_dimensions" to the boolean false didn't work. Using a string value "false" did work. --- autofilename.sublime-settings | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autofilename.sublime-settings b/autofilename.sublime-settings index 4b70fdc..958fa24 100644 --- a/autofilename.sublime-settings +++ b/autofilename.sublime-settings @@ -15,10 +15,10 @@ // Whether or not AutoFileName should insert the width // and height dimensions after inserting an image into // an image tag - "afn_insert_dimensions": true, + "afn_insert_dimensions": "true", // If afn_insert_dimensions is true, by default, AutoFileName // will insert height="" than width="". Setting this to true // will switch the order in which they are inserted. "afn_insert_width_first": false -} \ No newline at end of file +}