When writing executable scripts, and declarative configuration files that use a common language (eg. Python), I often find it undesirable to add an extension to the file name. Many syntax-highlighting text editor (eg. Geany) are subsequently unable to automatically determine the filetype.

Is there any standard method for indicating to editors the type of source in the file?

link|improve this question

78% accept rate
1  
Why do you find it undesirable to add an extension to the file name? Just curious... – Tarydon Dec 31 '09 at 5:39
2  
@Tarydon: Im the same way none of my shell scripts have extensions its extra typing for no reason - in most terms they are treated as a executable so its jsut extra typing on the CLI. – prodigitalson Dec 31 '09 at 5:58
1  
I thought that's what tab-complete was for. :) – fennec Dec 31 '09 at 6:09
3  
on unix, executability is transparent and doesn't require that a file is a binary. as an example, what if i wanted to replace an existing binary executable with a shell script that wraps it. – Matt Joiner Dec 31 '09 at 7:17
1  
@amphetamachine: Windoze is not competent. – Matt Joiner Jun 22 '11 at 16:17
show 1 more comment
feedback

3 Answers

up vote 5 down vote accepted

Typically the shebang line is used as a fall-back.

For example, a Ruby script without an extension would begin with:

#!/usr/bin/env ruby
link|improve this answer
Of note is that this is typically how file(1) and vim's filetype.vim determine script language. – amphetamachine May 27 '10 at 14:22
I chose this answer because it's the most obvious fallback, and the easiest to implement. – Matt Joiner Oct 24 '11 at 8:47
feedback

Vim

Vim has a concept called a modeline. A modeline is a specially formatted line either withinin the first or last 5 lines of the textfile, which allows you to :setlocal local variables. For example, for C:

 /* vi: set filetype=c fileencoding=UTF-8 shiftwidth=4 tabstop=4 expandtab */

or Ruby:

 # vi: set filetype=ruby fileencoding=UTF-8 shiftwidth=2 tabstop=2 expandtab

Some more documentation.

Emacs

Emacs has a similar concept, called File Variables.

File Variables are either specified at the beginning of the file (in the first line, or if there is a shebang line, then in the second) in this form:

/* *-* mode: cc c-basic-offset: 4; tab-width: 4; indent-tabs-mode: nil *-* */

or at the end:

# Local Variables:
# mode: ruby
# coding: utf-8
# c-basic-offset: 2
# tab-width: 2
# indent-tabs-mode: nil
# End:

jEdit

jEdit calls this buffer-local properties. The have to sit within the first or last 10 lines and look like this:

# :mode=ruby:indentSize=2:tabSize=2:noTabs=true:

jEdit also uses the shebang line as a fallback for mode detection.

Komodo Edit

There is a plugin called Komode (pun intended) which adds modeline support to Komodo Edit:

# komode: le=unix language=ruby codepage=utf8 tab=2 notabs indent=2

It also understands a limited subset of Vim modelines.

Others

A lot of other editors also have either their own variants of this, or support one of the above (usually Vim).

Python / Ruby encoding

Both Ruby 1.9 and Python require that the encoding for non-ASCII source files be explicitly specified. Fortunately, they do this in a way that is compatible with both Emacs and Vim modelines. (Basically, they look for the string coding followed by a non-word character followed by whitespace followed by a valid encoding name. Both Vim's fileencoding= and Emacs' coding: satisfy these requirements.)

Modeline Generator

Here is a simple modeline generator, which generates modelines for Vim, Emacs and jEdit.

link|improve this answer
a great answer for many editors – Matt Joiner Jan 1 '10 at 11:41
feedback

This works for many editors if you're using non-standard shebangs:

#!/usr/bin/env python3
# filetype=python
link|improve this answer
Actually it doesn't work. The editors I thought did this were actually doing fancy regex's on the first argument to env. – Matt Joiner Oct 24 '11 at 8:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.