Skip to content

Commit

Permalink
Update documentation for 'settings' file
Browse files Browse the repository at this point in the history
- Further explain the purpose of some settings in 'settings'
  • Loading branch information
stephenfin committed Mar 5, 2014
1 parent 5b5b86e commit aad2faa
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions CTags.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,25 @@
"autocomplete": false,

// Alter this value if your ctags command is not in the PATH, or if using
// a different version of ctags to that in the path (i.e. for OSX)
// a different version of ctags to that in the path (i.e. for OSX).
//
// NOTE: You *should not* place entire commands here. These commands are
// built automatically using the values below. For example:
// GOOD: "command": "/usr/bin/ctags"
// BAD: "command": "ctags -R -f .tags --exclude=some/path"
"command": "",

// Set to false to disable recursive search for ctag generation
// Set to false to disable recursive search for ctag generation. This
// translates the `-R` parameter
"recursive" : true,

// Additional options to pass to ctags
"opts" : "",

// Default read/write location of the tags file
// Default read/write location of the tags file. This translates to the
// `-f [FILENAME]` parameter
"tag_file" : ".tags",

// Additional options to pass to ctags, i.e. "--exclude=some/path"
"opts" : "",

//
"filters": {
"source.python": {"type":"^i$"}
Expand Down

0 comments on commit aad2faa

Please sign in to comment.