summary refs log tree commit diff stats
path: root/doc/nimsuggest.md
diff options
context:
space:
mode:
authorAndrey Makarov <ph.makarov@gmail.com>2022-09-20 01:24:40 +0300
committerGitHub <noreply@github.com>2022-09-19 18:24:40 -0400
commitc4ba4f06f819d6356fff8ee8ee1df0392091de9a (patch)
tree5820ed0db5088cc0b157dc9147ee65e1aac4c46a /doc/nimsuggest.md
parent2147b116a1e7d2c0fdd018a64386d8885e04b6a1 (diff)
downloadNim-c4ba4f06f819d6356fff8ee8ee1df0392091de9a.tar.gz
Markdown link migration part 2 (#20371)
Diffstat (limited to 'doc/nimsuggest.md')
-rw-r--r--doc/nimsuggest.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/nimsuggest.md b/doc/nimsuggest.md
index bfa423707..97cb2b1fa 100644
--- a/doc/nimsuggest.md
+++ b/doc/nimsuggest.md
@@ -20,7 +20,7 @@ definition of symbols or suggestions for completion.
 This document will guide you through the available options. If you
 want to look at practical examples of nimsuggest support you can look
 at the
-`various editor integrations <https://github.com/Araq/Nim/wiki/Editor-Support>`_
+[various editor integrations](https://github.com/Araq/Nim/wiki/Editor-Support)
 already available.
 
 
@@ -49,7 +49,7 @@ via sockets is more reasonable so that is the default. It listens to port 6000
 by default.
 
 Nimsuggest is basically a frontend for the nim compiler so `--path`:option: flags and
-`config files <https://nim-lang.org/docs/nimc.html#compiler-usage-configuration-files>`_
+[config files](https://nim-lang.org/docs/nimc.html#compiler-usage-configuration-files)
 can be used to specify additional dependencies like 
 `nimsuggest --stdin --debug --path:"dependencies" myproject.nim`:cmd:.
 
@@ -113,8 +113,8 @@ The `sug` Nimsuggest command performs a query about possible
 completion symbols at some point in the file.
 
 The typical usage scenario for this option is to call it after the
-user has typed the dot character for `the object oriented call
-syntax <tut2.html#object-oriented-programming-method-call-syntax>`_.
+user has typed the dot character for [the object oriented call
+syntax](tut2.html#object-oriented-programming-method-call-syntax).
 Nimsuggest will try to return the suggestions sorted first by scope
 (from innermost to outermost) and then by item name.