mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-11-08 05:03:39 +08:00
Add Powershell Code language (#3516) AxoCode
* feat(language): add Powershell Code language * fix: remove duplicate entry JSON
This commit is contained in:
parent
39dea0161e
commit
3f25c7acab
3 changed files with 115 additions and 0 deletions
|
|
@ -374,6 +374,7 @@
|
|||
"code_swift",
|
||||
"code_scala",
|
||||
"code_bash",
|
||||
"code_powershell",
|
||||
"code_lua",
|
||||
"code_luau",
|
||||
"code_matlab",
|
||||
|
|
|
|||
|
|
@ -204,6 +204,7 @@
|
|||
,"code_swift"
|
||||
,"code_scala"
|
||||
,"code_bash"
|
||||
,"code_powershell"
|
||||
,"code_lua"
|
||||
,"code_luau"
|
||||
,"code_matlab"
|
||||
|
|
|
|||
113
frontend/static/languages/code_powershell.json
Normal file
113
frontend/static/languages/code_powershell.json
Normal file
|
|
@ -0,0 +1,113 @@
|
|||
{
|
||||
"name": "code_powershell",
|
||||
"leftToRight": true,
|
||||
"noLazyMode": true,
|
||||
"words": [
|
||||
"Add-Content",
|
||||
"Add-PSSnapIn",
|
||||
"Clear-Content",
|
||||
"Clear-History",
|
||||
"Clear-Host",
|
||||
"Clear-Item",
|
||||
"Clear-ItemProperty",
|
||||
"Clear-Variable",
|
||||
"Compare-Object",
|
||||
"Connect-PSSession",
|
||||
"Convert-Path",
|
||||
"Copy-Item",
|
||||
"Copy-ItemProperty",
|
||||
"Disable-PSBreakpoint",
|
||||
"Disconnect-PSSession",
|
||||
"Enable-PSBreakpoint",
|
||||
"Enter-PSSession",
|
||||
"Exit-PSSession",
|
||||
"Export-Alias",
|
||||
"Export-Csv",
|
||||
"Export-PSSession",
|
||||
"ForEach-Object",
|
||||
"Format-Custom",
|
||||
"Format-List",
|
||||
"Format-Table",
|
||||
"Format-Wide",
|
||||
"Get-Alias",
|
||||
"Get-ChildItem",
|
||||
"Get-Command",
|
||||
"Get-Content",
|
||||
"Get-History",
|
||||
"Get-Item",
|
||||
"Get-ItemProperty",
|
||||
"Get-Job",
|
||||
"Get-Location",
|
||||
"Get-Member",
|
||||
"Get-Module",
|
||||
"Get-Process",
|
||||
"Get-PSBreakpoint",
|
||||
"Get-PSCallStack",
|
||||
"Get-PSDrive",
|
||||
"Get-PSSession",
|
||||
"Get-PSSnapIn",
|
||||
"Get-Service",
|
||||
"Get-Unique",
|
||||
"Get-Variable",
|
||||
"Get-WmiObject",
|
||||
"Group-Object",
|
||||
"help",
|
||||
"Import-Alias",
|
||||
"Import-Csv",
|
||||
"Import-Module",
|
||||
"Import-PSSession",
|
||||
"Invoke-Command",
|
||||
"Invoke-Expression",
|
||||
"Invoke-History",
|
||||
"Invoke-Item",
|
||||
"Invoke-RestMethod",
|
||||
"Invoke-WebRequest",
|
||||
"Invoke-WMIMethod",
|
||||
"Measure-Object",
|
||||
"mkdir",
|
||||
"Move-Item",
|
||||
"Move-ItemProperty",
|
||||
"New-Alias",
|
||||
"New-Item",
|
||||
"New-Module",
|
||||
"New-PSDrive",
|
||||
"New-PSSession",
|
||||
"New-PSSessionConfigurationFile",
|
||||
"New-Variable",
|
||||
"Out-GridView",
|
||||
"Out-Host",
|
||||
"Out-Printer",
|
||||
"Pop-Location",
|
||||
"Push-Location",
|
||||
"Receive-Job",
|
||||
"Receive-PSSession",
|
||||
"Remove-Item",
|
||||
"Remove-ItemProperty",
|
||||
"Remove-Job",
|
||||
"Remove-Module",
|
||||
"Remove-PSBreakpoint",
|
||||
"Remove-PSDrive",
|
||||
"Remove-PSSession",
|
||||
"Remove-PSSnapin",
|
||||
"Remove-Variable",
|
||||
"Remove-WMIObject",
|
||||
"Rename-Item",
|
||||
"Rename-ItemProperty",
|
||||
"Resolve-Path",
|
||||
"Resume-Job",
|
||||
"Select-Object",
|
||||
"Set-Alias",
|
||||
"Set-Content",
|
||||
"Set-Item",
|
||||
"Set-Location",
|
||||
"Set-PSBreakpoint",
|
||||
"Set-Variable",
|
||||
"Show-Command",
|
||||
"Start-Job",
|
||||
"Start-Process",
|
||||
"Start-Service",
|
||||
"Stop-Process",
|
||||
"Where-Object",
|
||||
"Write-Output"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue