Workarounds - GavriYashar/Matlab-Editor-Plugin GitHub Wiki

  • MEPR is not initialized during Matlab startup. Try one of the following:

    • execute at.mep.prefs.Settings.getProperty('path.mepr.rep'), check both values path.mepr.rep and path.mepr.var, if the return value looks weird, fix it in your CustomProps.properties file. [Install, Manual Installation]
    • type (in following order) clear classes, rehash path and startup
    • try restarting Matlab
  • Matlab won't start after Installing MEP (static path)

    • try adding pause(10) in startup.m before starting MEP (#51)
    • make sure that matconsolectl*.jar is before MEP_*.jar in javaclasspath.txt and also if you type javaclasspath
>> javaclasspath

		STATIC JAVA PATH

	C:\Program Files\MATLAB\R2017b\java\patch                                                                 
	BLA BLA BLA
	C:\Program Files\MATLAB\R2017b\java\jar\zh_CN\web_connectivity_res.jar 
        X:\Coding\MATLAB\MatlabEnvironment\MEP\matconsolectl-4.4.2.jar
	E:\Coding\Intellij\MEP\out\artifacts\MEP_1_30\MEP_1.30.jar

		DYNAMIC JAVA PATH

		<empty>
>> 
  • Matlab is freezing when debugging Custom Keypress Callbacks or Variables for LiveTemplates

    • I strongly advise you not to debug these functions via keyboard command. Instead call it from command line. If you need access to actionEvent use assignin('base','actionEvent',actionEvent)
  • BookmarksViewer is not showing up

    • create a custom key press callback containing this line at.mep.gui.bookmarks.BookmarksViewer.getInstance().showDialog()
    • i know this sounds weird, but have you tried to press the combination and release CTRL and SHIFT first before releasing F2? (i don't know why it doesn't work the same way as for example ClipboardStack)
  • Unsupported major.minor version more details here.

⚠️ **GitHub.com Fallback** ⚠️