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.

Peter Mortensen
  • 12,090
  • 23
  • 70
  • 90
Relaxed1
  • 189
  • 2
  • 14

2 Answers2

1

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

Oliver Salzburg
  • 86,445
  • 63
  • 260
  • 306
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)

  • Thanks, i programmed this like you said ... if all files open in txt from now on, i'll know it worked! – Relaxed1 Sep 29 '14 at 14:47