newLISP Fan Club

Forum => newLISP newS => Topic started by: Cyril on April 15, 2011, 12:11:23 AM

Title: newlisp.vim 1.35
Post by: Cyril on April 15, 2011, 12:11:23 AM
I've just realized that I haven't visited this forum for a half-year now. I am still using newLISP, just feeling less social about it. ;-) And now is the time for a new version of the syntax highlighter for the Vim text editor. This version is highly experimental, testing and feedback is highly appreciated. User-visible changes:



* String delimiters ("quotes", {braces}, and [text]tokens[/text]) are highlighted in different color than the string content.



* Bracketed symbols [like this] are highlighted in boldface; no other symbols are highlighted in boldface anymore (the newlispSymbolSpecial group is gone).



* Errors highlighting is drastically changed. The newLISP itself allows tokens to touch without  a separator, this leads to very strange code in some cases. For example, 019 is two tokens, not one (digit nine may not occur in octal literal, so it starts a fresh new number). Similarly, one[two] is one single token, but [one]two are two (check this with your newLISP interpreter!). I believe that using this feature in the real code leads to confusion, therefore the adjacent tokens are marked as errors (to be precise, the second of two adjacent tokens is marked as error, this should give you a clue why there are two and not one!). You can see some corner case examples here (//http).



Downloadable from the usual locations (one (//http), two (//http)). And again, this is an experimental version, please test it before using in production!
Title: Re: newlisp.vim 1.35
Post by: cormullion on April 15, 2011, 11:20:21 AM
I've been using vim recently and your newlisp.vim file is working fine. But I'm downloading your latest version and will tell you of any problems. Usually, with vim, I assume I've done something wrong (it's not the easiest software to become a master of), so you may not get many bug reports...
Title: Re: newlisp.vim 1.35
Post by: TedWalther on May 08, 2011, 05:41:58 PM
I like using vim.  Can you explain something?



I like to have "autoindent" like in emacs.  Is there a way to turn this on?



The horrible indenting behavior is making me flip flop between vim and emacs; vim for editing, emacs for formatting!



Now, admittedly, I'd like tabs longer than 2 spaces deep.  4 would be plenty. And I would like dragonfly style for close braces.



Can your vim mode do this?
Title: Re: newlisp.vim 1.35
Post by: TedWalther on May 08, 2011, 05:43:34 PM
I especially like that in emacs, I hit tab anywhere on the line, and it just correctly indents the whole line.
Title: Re: newlisp.vim 1.35
Post by: kanen on May 14, 2011, 11:32:02 PM
I've been writing code with your updated newlisp.vim since you posted in this thread.



I shared a screen shot of my vim terminal in another thread, but thought you'd want to see it here.



MacVim (plus a bunch of extras installed).



(//%3C/s%3E%3CURL%20url=%22http://www.lifezero.org/storage/mvim.png%22%3Ehttp://www.lifezero.org/storage/mvim.png%3C/URL%3E%3Ce%3E)
Title: Re: newlisp.vim 1.35
Post by: TedWalther on May 16, 2011, 11:45:58 AM
Kanen, did you get auto-indent to work, or did you indent your code by hand?  It looks nicely formatted, like how I want it.