TheSwamp

Code Red => AutoLISP (Vanilla / Visual) => Topic started by: nobody on December 14, 2017, 01:01:53 PM

Title: Lisp
Post by: nobody on December 14, 2017, 01:01:53 PM
Anyone have a lisp already that will turn off all the input search options / autocomplete stuff in the command line that they'd be willing to share?
Title: Re: Lisp
Post by: PKENEWELL on December 14, 2017, 01:46:39 PM
Perhaps This?

Code: [Select]
(defun c:ISOPT-OFF ()
  (command "_-inputsearchoptions" "_C" "_n" "_R" "_n" "_S" "_n" "_T" "_n" "_M" "_n" "")
  (princ)
)

(defun c:ISOPT-ON ()
  (command "_-inputsearchoptions" "_C" "_y" "_R" "_y" "_S" "_y" "_T" "_y" "_M" "_y" "")
  (princ)
)
Title: Re: Lisp
Post by: MSTG007 on December 14, 2017, 02:15:28 PM
lol... great question. I was trying to figure that one out too. thanks for sharing.
Title: Re: Lisp
Post by: PKENEWELL on December 14, 2017, 02:17:58 PM
 :-D Cheers!
Title: Re: Lisp
Post by: nobody on December 14, 2017, 09:59:22 PM
Thank you!