Sourcegraph comes with built-in code intelligence provided by search-based heuristics.
If you are interested in enabling precise code intelligence for your repository, see our how-to guides.
Search-based code intelligence is able to provide 3 core code intelligence features:
- Jump to definition: it performs a symbol search
- Hover documentation: it first finds the definition then extracts documentation from comments near the definition
- Find references: it performs a case-sensitive word-boundary cross-repository plain text search for the given symbol
Search-based code intelligence also filters results by file extension and by imports at the top of the file for some languages.
Search-based code intelligence supports all of the most popular programming languages.
Are you using a language we don't support? File a GitHub issue or submit a PR.
Search-based code intelligence uses search-based heuristics, rather than parsing the code into an abstract syntax tree (AST). Incorrect results occur more often for tokens with common names (such as Get
) than for tokens with more unique names simply because those tokens appear more often in the search index.
If you require 100% confidence in accuracy for a definition or reference results for a symbol you hovered over we recommend utilizing precise code intelligence. Scenarios where you may still get search-based code intelligence results even with precision on are described in more detail in the precise code intelligence docs.
The symbol search performance section describes query paths and performance.
The symbols container recognizes these environment variables:
CTAGS_COMMAND
: defaults touniversal-ctags
, ctags command (should point to universal-ctags executable compiled with JSON and seccomp support)CTAGS_PATTERN_LENGTH_LIMIT
: defaults to250
, the maximum length of the patterns output by ctagsLOG_CTAGS_ERRORS
: defaults tofalse
, log ctags errorsSANITY_CHECK
: defaults tofalse
, check that go-sqlite3 works then exit 0 if it's ok or 1 if notCACHE_DIR
: defaults to/tmp/symbols-cache
, directory in which to store cached symbolsSYMBOLS_CACHE_SIZE_MB
: defaults to100000
, maximum size of the disk cache (in megabytes)CTAGS_PROCESSES
: defaults tostrconv.Itoa(runtime.GOMAXPROCS(0))
, number of concurrent parser processes to runREQUEST_BUFFER_SIZE
: defaults to8192
, maximum size of buffered parser request channelPROCESSING_TIMEOUT
: defaults to2h
, maximum time to spend processing a repositoryMAX_TOTAL_PATHS_LENGTH
: defaults to100000
, maximum sum of lengths of all paths in a single call to git archive
The defaults come from config.go
.