parent
745444b564
commit
713a9cde6a
@ -0,0 +1,6 @@ |
||||
[x] - in extensions.json add suffix for languages that require it such as css where comments are: /* stuff */ |
||||
[] - test cancel token |
||||
[] - add fill in middle |
||||
[] - add config option to disable the extension |
||||
[] - add command to test and query connection to server |
||||
[] - add feedback when waiting response |
@ -0,0 +1,91 @@ |
||||
{ |
||||
"ada": ["--", ""], |
||||
"agda": ["--", ""], |
||||
"alloy": ["//", ""], |
||||
"antlr": ["#", ""], |
||||
"applescript": ["--", ""], |
||||
"assembly": [";", ""], |
||||
"augeas": ["##", ""], |
||||
"awk": ["#", ""], |
||||
"batchfile": ["::", ""], |
||||
"bluespec": ["//", ""], |
||||
"c-sharp": ["///", ""], |
||||
"c": ["//", ""], |
||||
"clojure": [";;", ""], |
||||
"cmake": ["#", ""], |
||||
"coffeescript": ["#", ""], |
||||
"common-lisp": [";;;", ""], |
||||
"cpp": ["//", ""], |
||||
"css": ["/*", "*/"], |
||||
"cuda": ["//", ""], |
||||
"dart": ["//", ""], |
||||
"dockerfile": ["#", ""], |
||||
"elixir": ["#", ""], |
||||
"elm": ["--", ""], |
||||
"emacs-lisp": [";;;", ""], |
||||
"erlang": ["%", ""], |
||||
"f-sharp": ["//", ""], |
||||
"fortran": ["!", ""], |
||||
"glsl": ["//", ""], |
||||
"go": ["//", ""], |
||||
"groovy": ["//", ""], |
||||
"haskell": ["--", ""], |
||||
"html": ["<!--", "-->"], |
||||
"idris": ["|||", ""], |
||||
"isabelle": ["--", ""], |
||||
"java-server-pages": ["<%--", "--%>"], |
||||
"java": ["//", ""], |
||||
"javascript": ["//", ""], |
||||
"json": ["\"comment\":\"", "\","], |
||||
"julia": ["#", ""], |
||||
"jupyter-notebook": ["#", ""], |
||||
"kotlin": ["//", ""], |
||||
"lean": ["/--", "-/"], |
||||
"literate-agda": ["--", ""], |
||||
"literate-coffeescript": ["#", ""], |
||||
"literate-haskell": ["--", ""], |
||||
"lua": ["--", ""], |
||||
"makefile": ["#", ""], |
||||
"maple": ["#", ""], |
||||
"markdown": ["<!---", "-->"], |
||||
"mathematica": ["(*", "*)"], |
||||
"matlab": ["%", ""], |
||||
"ocaml": ["(*", "*)"], |
||||
"pascal": ["(*", "*)"], |
||||
"perl": ["#", ""], |
||||
"php": ["//", ""], |
||||
"powershell": ["#", ""], |
||||
"prolog": ["/*", "*/"], |
||||
"protocol-buffer": ["//", ""], |
||||
"python": ["#", ""], |
||||
"r": ["#", ""], |
||||
"racket": [";", ""], |
||||
"restructuredtext": [".. ", ""], |
||||
"rmarkdown": ["<!--", "-->"], |
||||
"ruby": ["#", ""], |
||||
"rust": ["//", ""], |
||||
"sas": ["/*", "*/"], |
||||
"scala": ["//", ""], |
||||
"scheme": [";", ""], |
||||
"shell": ["#", ""], |
||||
"smalltalk": ["\"", "\""], |
||||
"solidity": ["//", ""], |
||||
"sparql": ["#", ""], |
||||
"sql": ["--", ""], |
||||
"stan": ["//", ""], |
||||
"standard-ml": ["(*", "*)"], |
||||
"stata": ["//", ""], |
||||
"systemverilog": ["//", ""], |
||||
"tcl": ["#", ""], |
||||
"tcsh": [": ", ""], |
||||
"tex": ["%", ""], |
||||
"thrift": ["//", ""], |
||||
"typescript": ["//", ""], |
||||
"verilog": ["//", ""], |
||||
"vhdl": ["--", ""], |
||||
"visual-basic": ["'", ""], |
||||
"xslt": ["<xsl:comment>", "</xsl:comment>"], |
||||
"yacc": ["//", ""], |
||||
"yaml": ["#", ""], |
||||
"zig": ["//", ""] |
||||
} |
Loading…
Reference in new issue