@@ -135,7 +135,8 @@ export type Lang =
135
135
| 'scheme'
136
136
| 'scss'
137
137
| 'shaderlab' | 'shader'
138
- | 'shellscript' | 'bash' | 'console' | 'sh' | 'shell' | 'zsh'
138
+ | 'shellscript' | 'bash' | 'sh' | 'shell' | 'zsh'
139
+ | 'shellsession' | 'console'
139
140
| 'smalltalk'
140
141
| 'solidity'
141
142
| 'sparql'
@@ -827,6 +828,7 @@ export const languages: ILanguageRegistration[] = [
827
828
scopeName : 'text.marko' ,
828
829
path : 'marko.tmLanguage.json' ,
829
830
displayName : 'Marko' ,
831
+ samplePath : 'marko.sample' ,
830
832
embeddedLangs : [ 'css' , 'less' , 'scss' , 'javascript' ]
831
833
} ,
832
834
{
@@ -840,7 +842,7 @@ export const languages: ILanguageRegistration[] = [
840
842
scopeName : 'source.mdx' ,
841
843
path : 'mdx.tmLanguage.json' ,
842
844
displayName : 'MDX' ,
843
- embeddedLangs : [ 'tsx' , 'toml' , 'yaml' , 'c' , 'clojure' , 'coffee' , 'cpp' , 'csharp' , 'css' , 'diff' , 'docker' , 'elixir' , 'elm' , 'erlang' , 'go' , 'graphql' , 'haskell' , 'html' , 'ini' , 'java' , 'javascript' , 'json' , 'julia' , 'kotlin' , 'less' , 'lua' , 'make' , 'markdown' , 'objective-c' , 'perl' , 'python' , 'r' , 'ruby' , 'rust' , 'scala' , 'scss' , 'shellscript' , 'sql' , 'xml' , 'swift' , 'typescript' ]
845
+ embeddedLangs : [ 'tsx' , 'toml' , 'yaml' , 'c' , 'clojure' , 'coffee' , 'cpp' , 'csharp' , 'css' , 'diff' , 'docker' , 'elixir' , 'elm' , 'erlang' , 'go' , 'graphql' , 'haskell' , 'html' , 'ini' , 'java' , 'javascript' , 'json' , 'julia' , 'kotlin' , 'less' , 'lua' , 'make' , 'markdown' , 'objective-c' , 'perl' , 'python' , 'r' , 'ruby' , 'rust' , 'scala' , 'scss' , 'shellscript' , 'shellsession' , ' sql', 'xml' , 'swift' , 'typescript' ]
844
846
} ,
845
847
{
846
848
id : 'mermaid' ,
@@ -1105,7 +1107,15 @@ export const languages: ILanguageRegistration[] = [
1105
1107
scopeName : 'source.shell' ,
1106
1108
path : 'shellscript.tmLanguage.json' ,
1107
1109
displayName : 'Shell' ,
1108
- aliases : [ 'bash' , 'console' , 'sh' , 'shell' , 'zsh' ]
1110
+ aliases : [ 'bash' , 'sh' , 'shell' , 'zsh' ]
1111
+ } ,
1112
+ {
1113
+ id : 'shellsession' ,
1114
+ scopeName : 'text.shell-session' ,
1115
+ path : 'shellsession.tmLanguage.json' ,
1116
+ displayName : 'Shell Session' ,
1117
+ aliases : [ 'console' ] ,
1118
+ embeddedLangs : [ 'shellscript' ]
1109
1119
} ,
1110
1120
{
1111
1121
id : 'smalltalk' ,
0 commit comments