07-02-2024
10:11 AM
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
07-02-2024
10:11 AM
You disabled the quickmode (with "all objects" as default) a year ago,
and now you want to use the standard mode with pre-defined "all",
right?
Set up a menumakro is simple
take the original ^C^C_trim and add your inputs
^C^C_trim;_all;; should works
If you like to change the command "trim", you need to use programming.
In Lisp for example, undefine trim command in acaddoc.lsp, (command "_.undefine" "TRIM")
and set up a new one (defun c:TRIM nil (command "_.TRIM" "_all" "")(princ))
Sebastian