Generic FunctionPackage: ideToCDocOverviewCGDocRelNotesFAQIndexPermutedIndex
Allegro CL version 8.2
This page is new in 8.2.

source-file-types

Arguments: ide-configuration

The value of this configuration option may be modified to change the set of file types that the IDE recognizes as source code files. The file types are used in places such as the file selection dialog, where files of those types are presented when asking for a source code file.

The value should be a list of strings, where each string names a file type. The default value is the list ("cl" "lsp" "lisp" "jil").

This option is not on the Options dialog, but could modified with a form like the following. This example would add "mylisp" to the list if it's not already there.

(pushnew "mylisp"
         (ide:source-file-types (configuration ide:*ide-system*))
         :test 'string-equal)

See also sys:*source-file-types*.


Copyright (c) 1998-2016, Franz Inc. Oakland, CA., USA. All rights reserved.
This page is new in the 8.2 release.
Created 2016.6.21.

ToCDocOverviewCGDocRelNotesFAQIndexPermutedIndex
Allegro CL version 8.2
This page is new in 8.2.