Skip to content

Commit

Permalink
feat: Add computing-acronyms dictionary (#2326)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Jul 14, 2023
1 parent 077cb9d commit 9757b4c
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 1 deletion.
8 changes: 7 additions & 1 deletion dictionaries/software-terms/cspell-ext.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,17 @@
"name": "web-services",
"path": "./dict/webServices.txt",
"description": "Web Services and APIs dictionary for cspell."
},
{
"name": "computing-acronyms",
"path": "./dict/computing-acronyms.txt",
"description": "Common acronyms related to computing."
}
],
// Enable `softwareTerms` by default if this extension is imported.
"dictionaries": [
"softwareTerms"
"softwareTerms",
"computing-acronyms"
// "networking-terms" - is not included by default because it is very specific.
// "web-services" - is not included by default
]
Expand Down
8 changes: 8 additions & 0 deletions dictionaries/software-terms/cspell-tools.config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,11 @@ targets:
targetDirectory: "./dict"
generateNonStrict: false
compress: false
- name: "computing-acronyms"
sources:
- filename: src/computing-acronyms.txt
split: true
format: plaintext
targetDirectory: "./dict"
generateNonStrict: false
compress: false
39 changes: 39 additions & 0 deletions dictionaries/software-terms/dict/computing-acronyms.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@

# cspell-tools: keep-case no-split

ACM
DDR
DOS
DRAM
GSM
GUI
GUID
HDD
HDMI
HTML
HTTP
IEEE
IP
RAM
SDRAM
SRAM
SSD
SSID
SVGA
TCP
UHF
UTP
UUID
VGA
VHS
VNC
VPN
VRAM
W3C
WAN
WAP
WWW
WYSIWYG
XML
XSD
ZIP
38 changes: 38 additions & 0 deletions dictionaries/software-terms/src/computing-acronyms.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Common Acronyms related to computing
# Reference: https://en.wikipedia.org/wiki/List_of_computing_and_IT_abbreviations
IEEE
ACM
SSD
HDD
HTTP
HTML
HDMI
UHF
GSM
GUI
GUID
SSID
RAM
SRAM
SDRAM
DRAM
VGA
SVGA
DDR
TCP
IP
DOS
UUID
UTP
VHS
VPN
VNC
VRAM
W3C
WAN
WWW
WYSIWYG
WAP
XML
XSD
ZIP

0 comments on commit 9757b4c

Please sign in to comment.