Author Topic: Notepad++ for LISP heads  (Read 47094 times)

0 Members and 1 Guest are viewing this topic.

ElpanovEvgeniy

  • Water Moccasin
  • Posts: 1569
  • Moscow (Russia)
Re: Notepad++ for LISP heads
« Reply #15 on: November 30, 2011, 06:07:27 AM »
I use NotePad++ to display the code without opening AutoCAD.
This allows you to very quickly see the code...

Chris

  • Swamp Rat
  • Posts: 548
Re: Notepad++ for LISP heads
« Reply #16 on: November 30, 2011, 08:29:48 AM »
now for the noob question,  I use notepad++ quite often, and everytime I setup a new machine, I have to manually input all my coding colors.  How do I actually import this file?  I tried doing the import style theme, but I dont think thats quite the right way to do it. (IOW it didnt work)
Christopher T. Cowgill, P.E.
AEC Collection 2020 (C3D)
Win 10

ElpanovEvgeniy

  • Water Moccasin
  • Posts: 1569
  • Moscow (Russia)
Re: Notepad++ for LISP heads
« Reply #17 on: November 30, 2011, 08:51:44 AM »
now for the noob question,  I use notepad++ quite often, and everytime I setup a new machine, I have to manually input all my coding colors.  How do I actually import this file?  I tried doing the import style theme, but I dont think thats quite the right way to do it. (IOW it didnt work)

For me, the most convenient way to use a portable version notepad++

How do I add a new language:
« Last Edit: November 30, 2011, 08:56:38 AM by ElpanovEvgeniy »

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Re: Notepad++ for LISP heads
« Reply #18 on: November 30, 2011, 09:03:20 AM »
For me, the most convenient way to use a portable version notepad++

That's exactly how I use it Evgeniv, portable + import, tho I'm a Notepad++ n00b so there may be a better way. Having said that, one may want to keep a copy of the stylers.xml file that hosts global color settings, migrating colors from the GlobalStyles section to suit (rather than overwriting the file as there's high probability future versions will host new info in said file). :)

Meant to say thanks Michael. I know a few people who will be pleased to see your support file.

Thank you for the nod KB. :)
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

Chris

  • Swamp Rat
  • Posts: 548
Re: Notepad++ for LISP heads
« Reply #19 on: November 30, 2011, 09:23:08 AM »
that worked well, thank you very much.
Christopher T. Cowgill, P.E.
AEC Collection 2020 (C3D)
Win 10

BlackBox

  • King Gator
  • Posts: 3770
Re: Notepad++ for LISP heads
« Reply #20 on: November 30, 2011, 09:58:37 AM »
For me, the most convenient way to use a portable version notepad++

That's exactly how I use it Evgeniv, portable + import

I'm a huge fan of PortableApps (PA)... IcoFX, Gimp specifically... now that I know there's a PA version, I'll probably use Notepad++ more often.

that worked well, thank you very much.

1+

Yes, thank you very much. :beer:
"How we think determines what we do, and what we do determines what we get."

ElpanovEvgeniy

  • Water Moccasin
  • Posts: 1569
  • Moscow (Russia)
Re: Notepad++ for LISP heads
« Reply #21 on: November 30, 2011, 10:05:40 AM »
except portable version, I like the network version program...
for example:
http://pixlr.com/
https://www.autocadws.com/

BlackBox

  • King Gator
  • Posts: 3770
Re: Notepad++ for LISP heads
« Reply #22 on: November 30, 2011, 10:12:57 AM »
except portable version, I like the network version program...
for example:
http://pixlr.com/
https://www.autocadws.com/

Thanks for sharing!

*Saves Pixlr link to favorites*

I use AutoCADWS for project walk through's, either on my iPhone, or iPad already :wink:
"How we think determines what we do, and what we do determines what we get."

JohnK

  • Administrator
  • Seagull
  • Posts: 10640
Re: Notepad++ for LISP heads
« Reply #23 on: November 30, 2011, 10:14:08 PM »
Thank you for the Methods and Properties dump file MP.

I had a few more/extra "constants" in my syntax file if anyone wanted them.

Code: [Select]
acAttachmentPointTopLeft
acAttachmentPointTopCenter
acAttachmentPointTopRight
acAttachmentPointMiddleLeft
acAttachmentPointMiddleCenter
acAttachmentPointMiddleRight
acAttachmentPointBottomLeft
acAttachmentPointBottomCenter
acAttachmentPointBottomRight
acAlignmentLeft
acAlignmentMiddle
acAlignmentTop
vlax-vbInteger
vlax-vbLong
vlax-vbSingle
vlax-vbDouble
vlax-vbString
vlax-vbObject
vlax-vbBoolean
vlax-vbVariant

EDIT: fixed doubles in list.
« Last Edit: November 30, 2011, 10:23:19 PM by Se7en »
TheSwamp.org (serving the CAD community since 2003)
Member location map - Add yourself

Donate to TheSwamp.org

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Re: Notepad++ for LISP heads
« Reply #24 on: November 30, 2011, 10:18:24 PM »
I had a few more/extra "constants" in my syntax file ...

Thanks John, about 40 extra by my count.  :-D

Subtitle: you doubled, even tripled some of your entries.

Actual unique values:

Code: [Select]
01 acAlignmentLeft
02 acAlignmentMiddle
03 acAlignmentTop
04 acAttachmentPointBottomCenter
05 acAttachmentPointBottomLeft
06 acAttachmentPointBottomRight
07 acAttachmentPointMiddleCenter
08 acAttachmentPointMiddleLeft
09 acAttachmentPointMiddleRight
10 acAttachmentPointTopCenter
11 acAttachmentPointTopLeft
12 acAttachmentPointTopRight
13 vlax-vbBoolean
14 vlax-vbDouble
15 vlax-vbInteger
16 vlax-vbLong
17 vlax-vbObject
18 vlax-vbSingle
19 vlax-vbString
20 vlax-vbVariant

 :-P
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

JohnK

  • Administrator
  • Seagull
  • Posts: 10640
Re: Notepad++ for LISP heads
« Reply #25 on: November 30, 2011, 10:22:24 PM »
Oops, did i paste those twice? I'll fix my post...
TheSwamp.org (serving the CAD community since 2003)
Member location map - Add yourself

Donate to TheSwamp.org

BlackBox

  • King Gator
  • Posts: 3770
Re: Notepad++ for LISP heads
« Reply #26 on: November 30, 2011, 10:23:38 PM »
Oops, did i paste those twice thrice? I'll fix my post...

FTFY - x3 :wink:
« Last Edit: November 30, 2011, 10:28:09 PM by RenderMan »
"How we think determines what we do, and what we do determines what we get."

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Re: Notepad++ for LISP heads
« Reply #27 on: November 30, 2011, 10:25:28 PM »
EDIT: fixed triples in list.

fixed :whistle:
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

JohnK

  • Administrator
  • Seagull
  • Posts: 10640
Re: Notepad++ for LISP heads
« Reply #28 on: November 30, 2011, 10:28:13 PM »
One, Two times this thread has shown up in my "unread posts" because you two have thought it necessary to say what exactly?
TheSwamp.org (serving the CAD community since 2003)
Member location map - Add yourself

Donate to TheSwamp.org

JohnK

  • Administrator
  • Seagull
  • Posts: 10640
Re: Notepad++ for LISP heads
« Reply #29 on: November 30, 2011, 10:32:02 PM »
butt-head
TheSwamp.org (serving the CAD community since 2003)
Member location map - Add yourself

Donate to TheSwamp.org