Author Topic: Lisp  (Read 1453 times)

0 Members and 1 Guest are viewing this topic.

nobody

  • Swamp Rat
  • Posts: 861
  • .net stuff
Lisp
« 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?

PKENEWELL

  • Bull Frog
  • Posts: 317
Re: Lisp
« Reply #1 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)
)
"When you are asked if you can do a job, tell 'em, 'Certainly I can!' Then get busy and find out how to do it." - Theodore Roosevelt

MSTG007

  • Gator
  • Posts: 2601
  • I can't remeber what I already asked! I need help!
Re: Lisp
« Reply #2 on: December 14, 2017, 02:15:28 PM »
lol... great question. I was trying to figure that one out too. thanks for sharing.
Civil3D 2020

PKENEWELL

  • Bull Frog
  • Posts: 317
Re: Lisp
« Reply #3 on: December 14, 2017, 02:17:58 PM »
 :-D Cheers!
"When you are asked if you can do a job, tell 'em, 'Certainly I can!' Then get busy and find out how to do it." - Theodore Roosevelt

nobody

  • Swamp Rat
  • Posts: 861
  • .net stuff
Re: Lisp
« Reply #4 on: December 14, 2017, 09:59:22 PM »
Thank you!