features.js 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.featuresArr = void 0;
  4. exports.featuresArr = [
  5. {
  6. label: 'accessibilityHelp',
  7. entry: 'vs/editor/standalone/browser/accessibilityHelp/accessibilityHelp'
  8. },
  9. {
  10. label: 'anchorSelect',
  11. entry: 'vs/editor/contrib/anchorSelect/anchorSelect'
  12. },
  13. {
  14. label: 'bracketMatching',
  15. entry: 'vs/editor/contrib/bracketMatching/bracketMatching'
  16. },
  17. {
  18. label: 'caretOperations',
  19. entry: 'vs/editor/contrib/caretOperations/caretOperations'
  20. },
  21. {
  22. label: 'clipboard',
  23. entry: 'vs/editor/contrib/clipboard/clipboard'
  24. },
  25. {
  26. label: 'codeAction',
  27. entry: 'vs/editor/contrib/codeAction/codeActionContributions'
  28. },
  29. {
  30. label: 'codelens',
  31. entry: 'vs/editor/contrib/codelens/codelensController'
  32. },
  33. {
  34. label: 'colorPicker',
  35. entry: 'vs/editor/contrib/colorPicker/colorContributions'
  36. },
  37. {
  38. label: 'comment',
  39. entry: 'vs/editor/contrib/comment/comment'
  40. },
  41. {
  42. label: 'contextmenu',
  43. entry: 'vs/editor/contrib/contextmenu/contextmenu'
  44. },
  45. {
  46. label: 'coreCommands',
  47. entry: 'vs/editor/browser/controller/coreCommands'
  48. },
  49. {
  50. label: 'cursorUndo',
  51. entry: 'vs/editor/contrib/cursorUndo/cursorUndo'
  52. },
  53. {
  54. label: 'dnd',
  55. entry: 'vs/editor/contrib/dnd/dnd'
  56. },
  57. {
  58. label: 'documentSymbols',
  59. entry: 'vs/editor/contrib/documentSymbols/documentSymbols'
  60. },
  61. {
  62. label: 'find',
  63. entry: 'vs/editor/contrib/find/findController'
  64. },
  65. {
  66. label: 'folding',
  67. entry: 'vs/editor/contrib/folding/folding'
  68. },
  69. {
  70. label: 'fontZoom',
  71. entry: 'vs/editor/contrib/fontZoom/fontZoom'
  72. },
  73. {
  74. label: 'format',
  75. entry: 'vs/editor/contrib/format/formatActions'
  76. },
  77. {
  78. label: 'gotoError',
  79. entry: 'vs/editor/contrib/gotoError/gotoError'
  80. },
  81. {
  82. label: 'gotoLine',
  83. entry: 'vs/editor/standalone/browser/quickAccess/standaloneGotoLineQuickAccess'
  84. },
  85. {
  86. label: 'gotoSymbol',
  87. entry: [
  88. 'vs/editor/contrib/gotoSymbol/goToCommands',
  89. 'vs/editor/contrib/gotoSymbol/link/goToDefinitionAtPosition'
  90. ]
  91. },
  92. {
  93. label: 'hover',
  94. entry: 'vs/editor/contrib/hover/hover'
  95. },
  96. {
  97. label: 'iPadShowKeyboard',
  98. entry: 'vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard'
  99. },
  100. {
  101. label: 'inPlaceReplace',
  102. entry: 'vs/editor/contrib/inPlaceReplace/inPlaceReplace'
  103. },
  104. {
  105. label: 'indentation',
  106. entry: 'vs/editor/contrib/indentation/indentation'
  107. },
  108. {
  109. label: 'inlayHints',
  110. entry: 'vs/editor/contrib/inlayHints/inlayHintsController'
  111. },
  112. {
  113. label: 'inlineCompletions',
  114. entry: 'vs/editor/contrib/inlineCompletions/ghostTextController'
  115. },
  116. {
  117. label: 'inspectTokens',
  118. entry: 'vs/editor/standalone/browser/inspectTokens/inspectTokens'
  119. },
  120. {
  121. label: 'linesOperations',
  122. entry: 'vs/editor/contrib/linesOperations/linesOperations'
  123. },
  124. {
  125. label: 'linkedEditing',
  126. entry: 'vs/editor/contrib/linkedEditing/linkedEditing'
  127. },
  128. {
  129. label: 'links',
  130. entry: 'vs/editor/contrib/links/links'
  131. },
  132. {
  133. label: 'multicursor',
  134. entry: 'vs/editor/contrib/multicursor/multicursor'
  135. },
  136. {
  137. label: 'parameterHints',
  138. entry: 'vs/editor/contrib/parameterHints/parameterHints'
  139. },
  140. {
  141. label: 'quickCommand',
  142. entry: 'vs/editor/standalone/browser/quickAccess/standaloneCommandsQuickAccess'
  143. },
  144. {
  145. label: 'quickHelp',
  146. entry: 'vs/editor/standalone/browser/quickAccess/standaloneHelpQuickAccess'
  147. },
  148. {
  149. label: 'quickOutline',
  150. entry: 'vs/editor/standalone/browser/quickAccess/standaloneGotoSymbolQuickAccess'
  151. },
  152. {
  153. label: 'referenceSearch',
  154. entry: 'vs/editor/standalone/browser/referenceSearch/standaloneReferenceSearch'
  155. },
  156. {
  157. label: 'rename',
  158. entry: 'vs/editor/contrib/rename/rename'
  159. },
  160. {
  161. label: 'smartSelect',
  162. entry: 'vs/editor/contrib/smartSelect/smartSelect'
  163. },
  164. {
  165. label: 'snippets',
  166. entry: 'vs/editor/contrib/snippet/snippetController2'
  167. },
  168. {
  169. label: 'suggest',
  170. entry: 'vs/editor/contrib/suggest/suggestController'
  171. },
  172. {
  173. label: 'toggleHighContrast',
  174. entry: 'vs/editor/standalone/browser/toggleHighContrast/toggleHighContrast'
  175. },
  176. {
  177. label: 'toggleTabFocusMode',
  178. entry: 'vs/editor/contrib/toggleTabFocusMode/toggleTabFocusMode'
  179. },
  180. {
  181. label: 'transpose',
  182. entry: 'vs/editor/contrib/caretOperations/transpose'
  183. },
  184. {
  185. label: 'unusualLineTerminators',
  186. entry: 'vs/editor/contrib/unusualLineTerminators/unusualLineTerminators'
  187. },
  188. {
  189. label: 'viewportSemanticTokens',
  190. entry: 'vs/editor/contrib/viewportSemanticTokens/viewportSemanticTokens'
  191. },
  192. {
  193. label: 'wordHighlighter',
  194. entry: 'vs/editor/contrib/wordHighlighter/wordHighlighter'
  195. },
  196. {
  197. label: 'wordOperations',
  198. entry: 'vs/editor/contrib/wordOperations/wordOperations'
  199. },
  200. {
  201. label: 'wordPartOperations',
  202. entry: 'vs/editor/contrib/wordPartOperations/wordPartOperations'
  203. }
  204. ];