- AuthorPosts
- February 25, 2009 at 12:08 am #6984gningParticipant
I’m trying to indent and outdent blocks by a single column. I tried temporarily setting Document.Config.Indent.IndentColumns to 1 but the value stays unchanged, and likewise for TabColumns. The help seems to be saying that these properties are settable, but it won’t do anything but indent by the previously set width.
February 25, 2009 at 12:20 am #6985Yutaka EmuraKeymastergning wrote:
I’m trying to indent and outdent blocks by a single column. I tried temporarily setting Document.Config.Indent.IndentColumns to 1 but the value stays unchanged, and likewise for TabColumns. The help seems to be saying that these properties are settable, but it won’t do anything but indent by the previously set width.Do you need to use a macro? If not, you can change indent/tab numbers in the Configuration Properties > General > Tab/Indent.
February 25, 2009 at 4:49 am #6992gningParticipantI want to indent blocks by one column in addition to being able to indent them by the normal distance. I want two separate commands. Coarse and fine tuning, so to speak.
February 25, 2009 at 6:49 am #6993Yutaka EmuraKeymastergning wrote:
I want to indent blocks by one column in addition to being able to indent them by the normal distance. I want two separate commands. Coarse and fine tuning, so to speak.I see. Please try this:
cfg = Document.Config;
cfg.Indent.IndentColumns = 1;
cfg.Save();
March 17, 2009 at 6:37 pm #7092gningParticipantIt still indents by the full amount. Even if I just change the value and call Save() and don’t restore any old value, all indentation is still by the old amount.
I’m using release 7.02, by the way.
March 17, 2009 at 10:49 pm #7093Yutaka EmuraKeymastergning wrote:
It still indents by the full amount. Even if I just change the value and call Save() and don’t restore any old value, all indentation is still by the old amount.I’m using release 7.02, by the way.
How about TabColumns insread of IndentColumns?
Why do you still use 7.02? Can you try the newest version?
April 15, 2009 at 12:41 am #7146gningParticipantOK I upgraded to 8.0.4, and the macro still does the same thing — the values of IndentColumns and TabColumns don’t change when you assign to them.
April 23, 2009 at 10:39 pm #7193gningParticipantWell, I did find the Insert Spaces plugin, but that’s clumsy to use and only goes inward, not outward. Better than nothin’…
April 24, 2009 at 10:09 pm #7196Yutaka EmuraKeymastergning wrote:
Well, I did find the Insert Spaces plugin, but that’s clumsy to use and only goes inward, not outward. Better than nothin’…This is a macro to change the tab/indent length. I hope this helps.
cfg = document.Config;
do {
n = prompt( "Enter new indent/tab length in characters:", cfg.Indent.TabColumns );
} while( n <= 0 || n > 16 );
cfg.Indent.IndentColumns = cfg.Indent.TabColumns = n;
cfg.Save();
June 17, 2011 at 2:49 am #9427gningParticipantBringing back an old issue here… this problem is not fixed in 10.0.8 (x64). Here is my latest attempt at a macro to indent by one space… note that it tries to force the editor into indent-with-spaces-only mode:
var icfg = Document.Config.Indent;
var oldIC = icfg.IndentColumns;
var oldTC = icfg.TabColumns;
var oldIS = icfg.InsertSpaces;
icfg.IndentColumns = icfg.TabColumns = 1;
icfg.InsertSpaces = true;
Document.Config.Save();
Editor.ExecuteCommandByID(4358); // indent (as with Tab key)
icfg.IndentColumns = oldIC;
icfg.TabColumns = oldTC;
icfg.InsertSpaces = oldIS;
Document.Config.Save();With alerts, I have verified that the values of the column properties do change to 1… but the indent I end up with is still a tab character, not a space. Exactly as if I had just pressed the tab key without changing any settings.
June 17, 2011 at 4:17 pm #9430Yutaka EmuraKeymasterHi gning,
I will look into this issue in future versions.
Thanks for letting me know!June 14, 2024 at 9:27 pm #29863gningParticipantRevisiting an old thread… because after fifteen years I am still encountering the same ancient bug!
I am trying to write a macro to reflow an indented paragraph. This requires measuring the indent, unindenting by that number of spaces, temporarily reducing the margin, reflowing, reindenting, and restoring the margin. It also requires temporarily setting the indent amount. And I still can’t set it to another value. I also can’t update MarginNormal.— when I assign a new value, the old value is still there when I read it back.
Even worse, IndentColumns contains 8 even though the actual indent in the active config is 4. (TabColumns is also incorrectly returning 8.)
I’m now on 19.8, and I could update to 24, but I don’t want any AI features.
June 15, 2024 at 5:31 am #29864gningParticipantI tried to see if it was the version of EmEditor that was the problem… I’d been using the v19 64-bit windows installer version, so I tried the v24 32-bit portable version as an alternative. It has the same bug, just like when I first encountered it in v7.
Assuming that this feature maybe works for others but not for me, I also tried running it as an administrator to see if that made any difference. It didn’t.
I’d totally forgotten that this was an old bug. I was rather surprised when I searched the forum for anyone else talking about this bug and found myself, back when I was still running Windows 2000 because I didn’t like XP. (Now I have Windows 10 Pro 22H2.)
June 15, 2024 at 8:55 am #29865Yutaka EmuraKeymasterHello,
Could you please summarize your issue as if you were writing about it for the first time? Provide an example to clarify the problem. Include both the current behavior and the expected behavior. You may also post or send screenshots to help explain the issue. Please include only the relevant information. Thank you.
June 15, 2024 at 11:42 am #29866gningParticipantOoookay.
Bug: assignment does not change value of IndentColumns, TabColumns, or MarginNormal
var oldIC = document.Config.Indent.IndentColumns; var oldTC = document.Config.Indent.TabColumns; var oldMr = document.Config.General.MarginNormal; document.Config.Indent.IndentColumns = 1; document.Config.Indent.TabColumns = 1; document.Config.General.MarginNormal = oldMr - 8; document.Config.Save(); alert("Indent size changed from " + oldIC + " to " + document.Config.Indent.IndentColumns + ", tab size changed from " + oldTC + " to " + document.Config.Indent.TabColumns + ", margin changed from " + oldMr + " to " + document.Config.General.MarginNormal + ", and config saved."); document.Config.General.MarginNormal = oldMr; document.Config.Indent.IndentColumns = oldIC; document.Config.Indent.TabColumns = oldTC; document.Config.Save();
Expected result: alert shows new values, and indenting or reformatting a paragraph uses those new values.
Actual result: alert shows values unchanged, and indenting or reformatting applies the old values.
June 16, 2024 at 10:13 am #29867gningParticipantAs an aside, I had said “Even worse, IndentColumns contains 8 even though the actual indent in the active config is 4. (TabColumns is also incorrectly returning 8.)” Turns out this was incorrect — I was mistaken. The bug is just that the values are not settable in javascript, not that it was loading any incorrect value originally.
June 16, 2024 at 9:59 pm #29868gningParticipantI tried using the V8 engine. I made a clean Windows 10 install in a VM, installed Chrome, then did a full install of the latest 64 bit EmEditor, with registration. The V8 engine showed the same bug.
June 17, 2024 at 8:37 am #29869Yutaka EmuraKeymasterAs I wrote on February 25, 2009, please write like this:
cfg = Document.Config; cfg.Indent.IndentColumns = 1; cfg.Save();
Your example should be:
cfg = Document.Config; var oldIC = cfg.Indent.IndentColumns; var oldTC = cfg.Indent.TabColumns; var oldMr = cfg.General.MarginNormal; cfg.Indent.IndentColumns = 1; cfg.Indent.TabColumns = 1; cfg.General.MarginNormal = oldMr - 8; cfg.Save(); alert("Indent size changed from " + oldIC + " to " + cfg.Indent.IndentColumns + ", tab size changed from " + oldTC + " to " + cfg.Indent.TabColumns + ", margin changed from " + oldMr + " to " + cfg.General.MarginNormal + ", and config saved."); cfg.General.MarginNormal = oldMr; cfg.Indent.IndentColumns = oldIC; cfg.Indent.TabColumns = oldTC; cfg.Save();
June 17, 2024 at 2:46 pm #29870gningParticipantHey, that did fix it! And I was sure I’d already tried it with a separate cfg variable. Thanks.
Why would using a separate reference make a difference? Is accessing document.Config creating a separate object instance each time, or something?
Now I just need to work out why my paragraph reflow has stopped working, when it worked correctly as long as the margins were wrong.
June 22, 2024 at 4:22 am #29871gningParticipantIf there’s an issue that causes document.Config to not return the same object when referenced twice, or something like that, I do think it should be explicitly documented, with warnings on various settable config properties.
(My macro does fully work now.)
- AuthorPosts
- You must be logged in to reply to this topic.