Yes, you can configure MATLAB preferences to use
either the MATLAB editor or an external editor (one or the other). I use the MATLAB editor because of the debugging features. I would then, simulataneously, open the same file in uedit (using explorer and several mouse clicks) take advantages of the power (mainly regular expressions, macros, column mode, etc.; also have syntax highlighting working for m-code). Save the file, then close uedit and debug the m code (which automatically gets the changes made in uedit) in MATLAB.
I replaced the several mouse clicks with one click on a MATLAB shortcut that calls the following m-file:
function OpenEditorDocInUedit(Focus_doc)
eval(['!uedit32 ' Focus_Doc) ;
end
Works great! Thanks
