unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* Auto-detect Guile in a text editor
@ 2018-10-23 11:07 HiPhish
  2018-10-23 11:36 ` Tkprom
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: HiPhish @ 2018-10-23 11:07 UTC (permalink / raw)
  To: guile-user

Hello Schemers

When I open a Scheme file (Neo)vim the file type is set to "scheme", but I 
would like to be able to detect that it is not just Scheme, but Guile Scheme. 
So far I have set up the editor to scan the first line for a shebang and if 
the word "guile" appears to set the file type to "scheme.guile":

	if getline(1) =~? '\v^#!.*[Gg]uile'
		let &filetype .= '.guile'
	endif

If you are not familiar with Vim, the important part is the regex 
'^#!.*[Gg]uile'. This works OK, but is there a better way than adding a 
shebang or some other manual hing to the head of every script? How does Emacs 
do it?

And while I'm at that topic, what is the proper way of writing a shebang when 
I don't know where Guile is installed to? For example, the Guile manual 
frequently uses

    #!/usr/local/bin/guile

but what if I have Guile installed via Guix and it is somewhere in my Guix 
store? A common solution is to abuse env:

	#!/usr/bin/env guile

But now I cannot pass arguments (like '-s') to Guile, because everything 
following the first space will be treated as one argument to 'env'. Is there a 
solution or am I just overthinking things?





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-11-13 14:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-23 11:07 Auto-detect Guile in a text editor HiPhish
2018-10-23 11:36 ` Tkprom
2018-10-23 12:33   ` Tk
2018-10-23 12:58 ` Matt Wette
2018-11-13 14:45 ` Barry Fishman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).