├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── compile_without_nimble.nims └── nimsuggest.nimble /.gitignore: -------------------------------------------------------------------------------- 1 | nimcache 2 | nimsuggest -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: c 3 | os: 4 | - linux 5 | install: 6 | - set -e 7 | - git clone https://github.com/nim-lang/Nim.git nim 8 | - cd nim 9 | - git clone --depth 1 https://github.com/nim-lang/csources 10 | - cd csources && sh build.sh 11 | - cd .. 12 | - bin/nim c koch && ./koch boot -d:release 13 | - cd .. 14 | before_script: 15 | - export PATH="${PWD}/nim/bin${PATH:+:$PATH}" 16 | - nim e ./compile_without_nimble.nims --hints:off 17 | - export PATH="${PWD}${PATH:+:$PATH}" 18 | script: 19 | - nim c tester 20 | - ./tester 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # nimsuggest 2 | Starting with version 0.15.3, nimsuggest is part of the Nim repository again. 3 | This is only used as an issue tracker. 4 | 5 | ## Installation instructions 6 | Nimsuggest is part of the Nim core now, ``koch`` can build nimsuggest for you. 7 | -------------------------------------------------------------------------------- /compile_without_nimble.nims: -------------------------------------------------------------------------------- 1 | 2 | exec "nim c -d:release --noNimblePath --path:../nim nimsuggest.nim" 3 | -------------------------------------------------------------------------------- /nimsuggest.nimble: -------------------------------------------------------------------------------- 1 | [Package] 2 | name = "nimsuggest" 3 | version = "0.1.0" 4 | author = "Andreas Rumpf" 5 | description = "Tool for providing auto completion data for Nim source code." 6 | license = "MIT" 7 | 8 | bin = "nimsuggest" 9 | 10 | [Deps] 11 | Requires: "nim >= 0.11.2, compiler#head" 12 | --------------------------------------------------------------------------------