diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2014-05-26 00:12:25 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2014-05-26 00:12:25 +0200 |
commit | 97fa3391f2e7e8fefe247117bc2da9a848c4fd15 (patch) | |
tree | 19503d3b5300e8001b18d24cd87474d1ae5d1868 /doc/idetools.txt | |
parent | ab5f2273a6d1ff0bf40306ad9d2e8de3e4748e9e (diff) | |
parent | 489d7e526de7f24996e3d0054a050649cb83bbd9 (diff) | |
download | Nim-97fa3391f2e7e8fefe247117bc2da9a848c4fd15.tar.gz |
Merge pull request #1132 from gradha/pr_index_improvements
Documentation index improvements
Diffstat (limited to 'doc/idetools.txt')
-rw-r--r-- | doc/idetools.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/idetools.txt b/doc/idetools.txt index 0c554a80b..97e110b1d 100644 --- a/doc/idetools.txt +++ b/doc/idetools.txt @@ -16,7 +16,7 @@ Nimrod differs from many other compilers in that it is really fast, and being so fast makes it suited to provide external queries for text editors about the source code being written. Through the -`idetools`:idx: command of `the compiler <nimrodc.html>`_, any IDE +``idetools`` command of `the compiler <nimrodc.html>`_, any IDE can query a ``.nim`` source file and obtain useful information like definition of symbols or suggestions for completion. @@ -169,7 +169,7 @@ clicks it and after a second or two the IDE displays where that symbol is defined. Such latencies would be terrible for features like symbol suggestion, plus why wait at all if we can avoid it? -The idetools command can be run as a compiler service (`caas`:idx:), +The idetools command can be run as a compiler service (CAAS), where you first launch the compiler and it will stay online as a server, accepting queries in a telnet like fashion. The advantage of staying on is that for many queries the compiler can cache the |