Giter Club home page Giter Club logo

FPGA spell checking dictionary

banner

Dictionary with common FPGA terms, for use with spell checking software. To avoid false negatives on common FPGA terms that are not available in the standard English dictionary.

Contents

axi.txt

Contains terms from the AMBA AXI standard. For example RVALID, ARLOCK, etc.

axi_stream.txt

Contains terms from the AMBA AXI-Stream standard. For example TVALID, TDATA, etc.

common.txt

Contains common FPGA terms. For example backpressure, FIFOs, etc.

electrical.txt

Contains some electrical engineering terms that are commonly encountered when doing FPGA development. For example LEDs, pullup, etc.

other.txt

Contains some other terms that are not strictly FPGA related, but are commonly encountered in FPGA projects. For example pylint, barebone, etc.

tools.txt

Contains some terms related to FPGA tools. For example Modelsim, VUnit, etc.

vhdl.txt

Contains terms related to the VHDL language. For example inout, sfixed, etc.

xilinx.txt

Contains terms related to Xilinx technology. For example Vivado, URAM, etc.

Usage

This project is intended for use with the CSpell spell checker for code, specifically its Visual Studio Code extension. Although it can probably be used with a lot of other tools as well.

VSCode extension instructions

With the extension installed and this repo cloned, add the following to your settings JSON (workspace or user settings):

"settings": {
    "cSpell.customDictionaries": {
        "fpga-spelling-axi": {
            "path": "${workspaceFolder}/../../fpga-spelling/fpga-spelling/axi.txt"
        },
        "fpga-spelling-axi-stream": {
            "path": "${workspaceFolder}/../../fpga-spelling/fpga-spelling/axi_stream.txt"
        },
        "fpga-spelling-common": {
            "path": "${workspaceFolder}/../../fpga-spelling/fpga-spelling/common.txt"
        },
        "fpga-spelling-electrical": {
            "path": "${workspaceFolder}/../../fpga-spelling/fpga-spelling/electrical.txt"
        },
        "fpga-spelling-other": {
            "path": "${workspaceFolder}/../../fpga-spelling/fpga-spelling/other.txt"
        },
        "fpga-spelling-tools": {
            "path": "${workspaceFolder}/../../fpga-spelling/fpga-spelling/tools.txt"
        },
        "fpga-spelling-vhdl": {
            "path": "${workspaceFolder}/../../fpga-spelling/fpga-spelling/vhdl.txt"
        },
        "fpga-spelling-xilinx": {
            "path": "${workspaceFolder}/../../fpga-spelling/fpga-spelling/xilinx.txt"
        },
    },
    "cSpell.enableFiletypes": [
        "json",
        "md",
        "rst",
        "toml",
        "vhdl"
    ],
},

Note that you might have to modify the paths depending on your repository/workspace structure.

Feel free to exclude dictionaries as well. If you for example don't want the VHDL or "other" terms, then those entries can simply be removed from the JSON.

Also the list of file types that should be checked can be modified freely.

Additions/contributions

Contributions and additions are very welcome. Add the word(s) that you are missing to the appropriate .txt file and create a pull request here on github.

In order to keep everything in order, words shall be in all lowercase, and sorted alphabetically. In VSCode you can select everything (Ctrl-A) and use the Transform to lowercase and Sort lines ascending commands:

to lowercase

sort words

fpga-spelling's Projects

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.