UltraEdit never open in hex?

1

Is there a way to disable hex mode? So that especially .txt files are always opened in ASCII (normal) view.

I already tried: {Menu Advanced, Configuration, File Handling, Unicode/UTF-8 Detection, Disable automatic detection of hex file format on reload} = yes.

Relaxed1

Posted 2012-01-20T10:50:06.253

Reputation: 189

Answers

1

Try to create following macro: (Macro –> Edit Macro -> New Macro)

IfExtIs "txt"
InsertMode
ColumnModeOff
HexOff
EndIf

Where “txt” – file extension. Then save it and add to Macro -> Set auto load (Number of times to execute: 1,, and specify correct macro name and file that contains this macro)

Londo Mollari

Posted 2012-01-20T10:50:06.253

Reputation: 26

Thanks, i programmed this like you said ... if all files open in txt from now on, i'll know it worked! – Relaxed1 – 2014-09-29T14:47:27.297

1

According to the UltraEdit forums, it's not possible. The suggested solution to use a macro did not work for me.

Der Hochstapler

Posted 2012-01-20T10:50:06.253

Reputation: 77 228