[MATLAB's GUI] Erase everything within "Delimiter matching"
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Luciano Branco
el 1 de Ag. de 2024
Comentada: Luciano Branco
el 4 de Ag. de 2024
Hello,
After coming across this post,
I improved a lot my Matlab experience by better seeing the scope of a function, it's arguments, parenthesis, etc. It's great.
However, I was wondering if there is a way to setup a hotkey to remove the contents that are highlighthed by such delimiters. I couldn't find anything online.
In other words, if Matlab is properly highlighting these delimiters (i.e. parenthesis, brackets, IF/END, etc) there must be a way to capture these 2 "endpoints" and just erase everything within it. Maybe some Java hacks which I'm not super familiar with?
I'm using Matlab 2020b and have no intention of changing it anytime soon (because I have custom libraries that stopped being supported) if that changes anything.
Thanks for any input!
Luciano
0 comentarios
Respuesta aceptada
Mario Malic
el 1 de Ag. de 2024
Hello,
this answer comes with a big warning, because I accidentally deleted the script, but I managed to recover it. So, 100% not recommended thing to do, as it's undocumented and also, you're risking to lose your code. If your editor loses focus, it will be saved and you can't undo.
Because I don't think this is something that should be posted because of users potentially losing the code, let's discuss your problem first.
Can you elaborate on this, why would you do this, what are you trying to fix - In other words, if Matlab is properly highlighting these delimiters (i.e. parenthesis, brackets, IF/END, etc) there must be a way to capture these 2 "endpoints" and just erase everything within it.
3 comentarios
Mario Malic
el 3 de Ag. de 2024
Sorry for the delay.
Check this
doc matlab.desktop.editor
Get the opened file in editor
openedDoc = matlab.desktop.editor.getActive
So, you are looking for Selection and Text property. With these you can figure out how to delete parts of code.
Unfortunately, I didn't find any information, how to obtain the underlined text, i.e. when you click on "if" and the editor will underline the "end".
Más respuestas (0)
Ver también
Categorías
Más información sobre Entering Commands en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!