Re: Logo proposal

2020-01-29 Thread Maxim Cournoyer
Hello, John Cowan writes: > On Sun, Jan 26, 2020 at 12:02 PM sirgazil wrote: > > https://multimedialib.files.wordpress.com/2020/01/guile-logo-proposal-2020-01-24.png >> >> Personally, I like the one with the single lambda. >> >> >> What do you think? >> > > As I mentioned on IRC, my favorites

Re: scheme with vim

2020-01-29 Thread zimoun
On Wed, 29 Jan 2020 at 21:53, Marc Chantreux wrote: > yet it will be distro dependant. i expected something like > introspection, querying a state of interpreter or even parsing the > documentation to provide a ready to use list of symbols. My bad! I thought it was the mailing list related to

Re: scheme with vim

2020-01-29 Thread Marc Chantreux
> I am sure you will come up with a more elegant trick for Guix via a > Guile script. :-) yet it will be distro dependant. i expected something like introspection, querying a state of interpreter or even parsing the documentation to provide a ready to use list of symbols. regards, marc

Re: scheme with vim

2020-01-29 Thread zimoun
Hi Ricardo, On Wed, 29 Jan 2020 at 19:36, Ricardo Wurmus wrote: > > i don't know what is the good way to get the list of built-in > > commands of guile so i ended up with > > > > aptitude search '~i ~n guile-2' -F%p | > > xargs -n1 dpkg -L | > > perl -lnE 'print if /[.]scm$/

Re: scheme with vim

2020-01-29 Thread Ricardo Wurmus
Hi Marc, > # completion > > i don't know what is the good way to get the list of built-in > commands of guile so i ended up with > > aptitude search '~i ~n guile-2' -F%p | > xargs -n1 dpkg -L | > perl -lnE 'print if /[.]scm$/ && -f' | > ctags -L - -f ~/.vim/ctags/guile >

scheme with vim

2020-01-29 Thread Marc Chantreux
hello people, during the guix days 2019, i made a demo of how awesome vim is as a scheme editor (because s-expr actually are text objects). then during the JRES, i said to Julien i'll write a tutorial about it. i started to write a filetype plugin and an interactive tutorial (vimtutor inspired)