devver-ultraviolet 0.10.5
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +25 -0
- data/Manifest.txt +233 -0
- data/README.txt +52 -0
- data/bin/theme2latexrender +122 -0
- data/bin/theme2xhtmlrender +156 -0
- data/bin/uv +140 -0
- data/lib/uv.rb +94 -0
- data/lib/uv/render_processor.rb +146 -0
- data/lib/uv/utility.rb +67 -0
- data/render/latex/active4d.render +132 -0
- data/render/latex/all_hallows_eve.render +96 -0
- data/render/latex/amy.render +171 -0
- data/render/latex/blackboard.render +111 -0
- data/render/latex/brilliance_black.render +552 -0
- data/render/latex/brilliance_dull.render +561 -0
- data/render/latex/cobalt.render +162 -0
- data/render/latex/dawn.render +126 -0
- data/render/latex/eiffel.render +132 -0
- data/render/latex/espresso_libre.render +123 -0
- data/render/latex/idle.render +93 -0
- data/render/latex/iplastic.render +99 -0
- data/render/latex/lazy.render +96 -0
- data/render/latex/mac_classic.render +135 -0
- data/render/latex/magicwb_amiga.render +117 -0
- data/render/latex/pastels_on_dark.render +204 -0
- data/render/latex/slush_poppies.render +123 -0
- data/render/latex/spacecadet.render +81 -0
- data/render/latex/sunburst.render +186 -0
- data/render/latex/twilight.render +153 -0
- data/render/latex/zenburnesque.render +126 -0
- data/render/old/txt2tags.render +131 -0
- data/render/xhtml/active4d.render +140 -0
- data/render/xhtml/all_hallows_eve.render +104 -0
- data/render/xhtml/amy.render +179 -0
- data/render/xhtml/blackboard.render +119 -0
- data/render/xhtml/brilliance_black.render +560 -0
- data/render/xhtml/brilliance_dull.render +569 -0
- data/render/xhtml/cobalt.render +170 -0
- data/render/xhtml/dawn.render +134 -0
- data/render/xhtml/eiffel.render +140 -0
- data/render/xhtml/espresso_libre.render +131 -0
- data/render/xhtml/files/css/active4d.css +114 -0
- data/render/xhtml/files/css/all_hallows_eve.css +72 -0
- data/render/xhtml/files/css/amy.css +147 -0
- data/render/xhtml/files/css/blackboard.css +88 -0
- data/render/xhtml/files/css/brilliance_black.css +605 -0
- data/render/xhtml/files/css/brilliance_dull.css +599 -0
- data/render/xhtml/files/css/cobalt.css +149 -0
- data/render/xhtml/files/css/dawn.css +121 -0
- data/render/xhtml/files/css/eiffel.css +121 -0
- data/render/xhtml/files/css/espresso_libre.css +109 -0
- data/render/xhtml/files/css/idle.css +62 -0
- data/render/xhtml/files/css/iplastic.css +80 -0
- data/render/xhtml/files/css/lazy.css +73 -0
- data/render/xhtml/files/css/mac_classic.css +123 -0
- data/render/xhtml/files/css/magicwb_amiga.css +104 -0
- data/render/xhtml/files/css/pastels_on_dark.css +188 -0
- data/render/xhtml/files/css/slush_poppies.css +85 -0
- data/render/xhtml/files/css/spacecadet.css +51 -0
- data/render/xhtml/files/css/sunburst.css +180 -0
- data/render/xhtml/files/css/twilight.css +137 -0
- data/render/xhtml/files/css/zenburnesque.css +91 -0
- data/render/xhtml/idle.render +101 -0
- data/render/xhtml/iplastic.render +107 -0
- data/render/xhtml/lazy.render +104 -0
- data/render/xhtml/mac_classic.render +143 -0
- data/render/xhtml/magicwb_amiga.render +125 -0
- data/render/xhtml/pastels_on_dark.render +212 -0
- data/render/xhtml/slush_poppies.render +131 -0
- data/render/xhtml/spacecadet.render +89 -0
- data/render/xhtml/sunburst.render +194 -0
- data/render/xhtml/twilight.render +161 -0
- data/render/xhtml/zenburnesque.render +134 -0
- data/syntax/actionscript.syntax +97 -0
- data/syntax/active4d.syntax +276 -0
- data/syntax/active4d_html.syntax +311 -0
- data/syntax/active4d_ini.syntax +50 -0
- data/syntax/active4d_library.syntax +21 -0
- data/syntax/ada.syntax +33 -0
- data/syntax/antlr.syntax +151 -0
- data/syntax/apache.syntax +191 -0
- data/syntax/applescript.syntax +384 -0
- data/syntax/asp.syntax +70 -0
- data/syntax/asp_vb.net.syntax +129 -0
- data/syntax/bibtex.syntax +151 -0
- data/syntax/blog_html.syntax +41 -0
- data/syntax/blog_markdown.syntax +42 -0
- data/syntax/blog_text.syntax +27 -0
- data/syntax/blog_textile.syntax +27 -0
- data/syntax/build.syntax +53 -0
- data/syntax/bulletin_board.syntax +287 -0
- data/syntax/cake.syntax +55 -0
- data/syntax/camlp4.syntax +36 -0
- data/syntax/cm.syntax +32 -0
- data/syntax/coldfusion.syntax +119 -0
- data/syntax/context_free.syntax +176 -0
- data/syntax/cs.syntax +59 -0
- data/syntax/css.syntax +195 -0
- data/syntax/css_experimental.syntax +1925 -0
- data/syntax/csv.syntax +68 -0
- data/syntax/d.syntax +142 -0
- data/syntax/diff.syntax +81 -0
- data/syntax/dokuwiki.syntax +204 -0
- data/syntax/dot.syntax +47 -0
- data/syntax/doxygen.syntax +43 -0
- data/syntax/dylan.syntax +62 -0
- data/syntax/eiffel.syntax +78 -0
- data/syntax/erlang.syntax +922 -0
- data/syntax/f-script.syntax +80 -0
- data/syntax/fortran.syntax +141 -0
- data/syntax/fxscript.syntax +142 -0
- data/syntax/greasemonkey.syntax +34 -0
- data/syntax/gri.syntax +83 -0
- data/syntax/groovy.syntax +191 -0
- data/syntax/gtd.syntax +22 -0
- data/syntax/gtdalt.syntax +143 -0
- data/syntax/haml.syntax +88 -0
- data/syntax/haskell.syntax +88 -0
- data/syntax/html-asp.syntax +27 -0
- data/syntax/html.syntax +362 -0
- data/syntax/html_django.syntax +36 -0
- data/syntax/html_for_asp.net.syntax +424 -0
- data/syntax/html_mason.syntax +119 -0
- data/syntax/html_rails.syntax +40 -0
- data/syntax/html_tcl.syntax +26 -0
- data/syntax/icalendar.syntax +32 -0
- data/syntax/inform.syntax +48 -0
- data/syntax/ini.syntax +55 -0
- data/syntax/installer_distribution_script.syntax +77 -0
- data/syntax/io.syntax +81 -0
- data/syntax/java.syntax +211 -0
- data/syntax/javaproperties.syntax +20 -0
- data/syntax/javascript.syntax +256 -0
- data/syntax/javascript_+_prototype.syntax +72 -0
- data/syntax/javascript_+_prototype_bracketed.syntax +140 -0
- data/syntax/jquery_javascript.syntax +114 -0
- data/syntax/json.syntax +136 -0
- data/syntax/languagedefinition.syntax +708 -0
- data/syntax/latex.syntax +566 -0
- data/syntax/latex_beamer.syntax +41 -0
- data/syntax/latex_log.syntax +50 -0
- data/syntax/latex_memoir.syntax +64 -0
- data/syntax/lexflex.syntax +219 -0
- data/syntax/lighttpd.syntax +54 -0
- data/syntax/lilypond.syntax +492 -0
- data/syntax/lisp.syntax +61 -0
- data/syntax/literate_haskell.syntax +24 -0
- data/syntax/logo.syntax +29 -0
- data/syntax/logtalk.syntax +152 -0
- data/syntax/lua.syntax +86 -0
- data/syntax/m.syntax +142 -0
- data/syntax/macports_portfile.syntax +163 -0
- data/syntax/makefile.syntax +36 -0
- data/syntax/man.syntax +17 -0
- data/syntax/mediawiki.syntax +567 -0
- data/syntax/mips.syntax +66 -0
- data/syntax/mod_perl.syntax +50 -0
- data/syntax/modula-3.syntax +47 -0
- data/syntax/moinmoin.syntax +189 -0
- data/syntax/mootools.syntax +572 -0
- data/syntax/movable_type.syntax +162 -0
- data/syntax/multimarkdown.syntax +39 -0
- data/syntax/objective-c++.syntax +18 -0
- data/syntax/objective-c.syntax +233 -0
- data/syntax/ocaml.syntax +764 -0
- data/syntax/ocamllex.syntax +167 -0
- data/syntax/ocamlyacc.syntax +184 -0
- data/syntax/opengl.syntax +14 -0
- data/syntax/pascal.syntax +77 -0
- data/syntax/perl.syntax +1115 -0
- data/syntax/plain_text.syntax +32 -0
- data/syntax/postscript.syntax +114 -0
- data/syntax/processing.syntax +106 -0
- data/syntax/prolog.syntax +40 -0
- data/syntax/property_list.syntax +635 -0
- data/syntax/python.syntax +868 -0
- data/syntax/python_django.syntax +21 -0
- data/syntax/qmake_project.syntax +114 -0
- data/syntax/qt_c++.syntax +26 -0
- data/syntax/quake3_config.syntax +32 -0
- data/syntax/r.syntax +81 -0
- data/syntax/r_console.syntax +16 -0
- data/syntax/ragel.syntax +201 -0
- data/syntax/rd_r_documentation.syntax +91 -0
- data/syntax/regexp.syntax +50 -0
- data/syntax/release_notes.syntax +46 -0
- data/syntax/remind.syntax +253 -0
- data/syntax/restructuredtext.syntax +250 -0
- data/syntax/rez.syntax +80 -0
- data/syntax/ruby.syntax +1035 -0
- data/syntax/ruby_experimental.syntax +145 -0
- data/syntax/ruby_on_rails.syntax +88 -0
- data/syntax/s5.syntax +69 -0
- data/syntax/scheme.syntax +347 -0
- data/syntax/scilab.syntax +41 -0
- data/syntax/setext.syntax +147 -0
- data/syntax/shell-unix-generic.syntax +384 -0
- data/syntax/slate.syntax +149 -0
- data/syntax/sql.syntax +237 -0
- data/syntax/sql_rails.syntax +18 -0
- data/syntax/ssh-config.syntax +33 -0
- data/syntax/standard_ml.syntax +121 -0
- data/syntax/strings_file.syntax +39 -0
- data/syntax/subversion_commit_message.syntax +36 -0
- data/syntax/sweave.syntax +84 -0
- data/syntax/swig.syntax +57 -0
- data/syntax/tcl.syntax +152 -0
- data/syntax/template_toolkit.syntax +121 -0
- data/syntax/tex.syntax +86 -0
- data/syntax/tex_math.syntax +49 -0
- data/syntax/textile.syntax +215 -0
- data/syntax/tsv.syntax +50 -0
- data/syntax/twiki.syntax +241 -0
- data/syntax/txt2tags.syntax +79 -0
- data/syntax/vectorscript.syntax +57 -0
- data/syntax/xhtml_1.0.syntax +4027 -0
- data/syntax/xml.syntax +180 -0
- data/syntax/xml_strict.syntax +92 -0
- data/syntax/xsl.syntax +60 -0
- data/syntax/yaml.syntax +160 -0
- data/syntax/yui_javascript.syntax +176 -0
- metadata +310 -0
@@ -0,0 +1,191 @@
|
|
1
|
+
---
|
2
|
+
name: Groovy
|
3
|
+
fileTypes:
|
4
|
+
- groovy
|
5
|
+
- gvy
|
6
|
+
scopeName: source.groovy.groovy
|
7
|
+
repository:
|
8
|
+
statement-remainder:
|
9
|
+
patterns:
|
10
|
+
- name: meta.definition.param-list.groovy
|
11
|
+
begin: \(
|
12
|
+
end: (?=\))
|
13
|
+
patterns:
|
14
|
+
- include: "#all-types"
|
15
|
+
- name: meta.definition.throws.groovy
|
16
|
+
captures:
|
17
|
+
"1":
|
18
|
+
name: keyword.other.class-fns.groovy
|
19
|
+
begin: (throws)
|
20
|
+
end: (?={)
|
21
|
+
patterns:
|
22
|
+
- include: "#all-types"
|
23
|
+
all-types:
|
24
|
+
patterns:
|
25
|
+
- include: "#support-type-built-ins-groovy"
|
26
|
+
- include: "#support-type-groovy"
|
27
|
+
- include: "#storage-type-groovy"
|
28
|
+
storage-type-groovy:
|
29
|
+
name: storage.type.groovy
|
30
|
+
match: \b(void|byte|short|char|int|long|float|double|boolean|([a-z]\w+\.)*[A-Z]\w+)\b
|
31
|
+
string-quoted-single:
|
32
|
+
name: string.quoted.single.groovy
|
33
|
+
begin: "'"
|
34
|
+
end: "'"
|
35
|
+
patterns:
|
36
|
+
- name: constant.character.escape.groovy
|
37
|
+
match: \\.
|
38
|
+
support-type-groovy:
|
39
|
+
name: support.type.groovy
|
40
|
+
match: \b(groovy(x)?\.([a-z]\w+\.)+[A-Z]\w+)\b
|
41
|
+
string-quoted-double:
|
42
|
+
name: string.quoted.double.groovy
|
43
|
+
begin: "\""
|
44
|
+
end: "\""
|
45
|
+
patterns:
|
46
|
+
- name: constant.character.escape.groovy
|
47
|
+
match: \\.
|
48
|
+
support-type-built-ins-groovy:
|
49
|
+
name: support.type.built-ins.groovy
|
50
|
+
match: \b(AWTError|AWTEvent|AWTEventListener|AWTEventListenerProxy|AWTEventMulticaster|AWTException|AWTKeyStroke|AWTPermission|AbstractAction|AbstractBorder|AbstractButton|AbstractCellEditor|AbstractCollection|AbstractColorChooserPanel|AbstractDocument|AbstractExecutorService|AbstractInterruptibleChannel|AbstractLayoutCache|AbstractList|AbstractListModel|AbstractMap|AbstractMethodError|AbstractPreferences|AbstractQueue|AbstractQueuedSynchronizer|AbstractSelectableChannel|AbstractSelectionKey|AbstractSelector|AbstractSequentialList|AbstractSet|AbstractSpinnerModel|AbstractTableModel|AbstractUndoableEdit|AbstractWriter|AccessControlContext|AccessControlException|AccessController|AccessException|Accessible|AccessibleAction|AccessibleAttributeSequence|AccessibleBundle|AccessibleComponent|AccessibleContext|AccessibleEditableText|AccessibleExtendedComponent|AccessibleExtendedTable|AccessibleExtendedText|AccessibleHyperlink|AccessibleHypertext|AccessibleIcon|AccessibleKeyBinding|AccessibleObject|AccessibleRelation|AccessibleRelationSet|AccessibleResourceBundle|AccessibleRole|AccessibleSelection|AccessibleState|AccessibleStateSet|AccessibleStreamable|AccessibleTable|AccessibleTableModelChange|AccessibleText|AccessibleTextSequence|AccessibleValue|AccountException|AccountExpiredException|AccountLockedException|AccountNotFoundException|Acl|AclEntry|AclNotFoundException|Action|ActionEvent|ActionListener|ActionMap|ActionMapUIResource|Activatable|ActivateFailedException|ActivationDesc|ActivationException|ActivationGroup|ActivationGroupDesc|ActivationGroupID|ActivationGroup_Stub|ActivationID|ActivationInstantiator|ActivationMonitor|ActivationSystem|Activator|ActiveEvent|ActivityCompletedException|ActivityRequiredException|Adjustable|AdjustmentEvent|AdjustmentListener|Adler32|AffineTransform|AffineTransformOp|AlgorithmParameterGenerator|AlgorithmParameterGeneratorSpi|AlgorithmParameterSpec|AlgorithmParameters|AlgorithmParametersSpi|AllPermission|AlphaComposite|AlreadyBoundException|AlreadyConnectedException|AncestorEvent|AncestorListener|AnnotatedElement|Annotation|AnnotationFormatError|AnnotationTypeMismatchException|AppConfigurationEntry|Appendable|Applet|AppletContext|AppletInitializer|AppletStub|Arc2D|Area|AreaAveragingScaleFilter|ArithmeticException|Array|ArrayBlockingQueue|ArrayIndexOutOfBoundsException|ArrayList|ArrayStoreException|ArrayType|Arrays|AssertionError|AsyncBoxView|AsynchronousCloseException|AtomicBoolean|AtomicInteger|AtomicIntegerArray|AtomicIntegerFieldUpdater|AtomicLong|AtomicLongArray|AtomicLongFieldUpdater|AtomicMarkableReference|AtomicReference|AtomicReferenceArray|AtomicReferenceFieldUpdater|AtomicStampedReference|Attribute|AttributeChangeNotification|AttributeChangeNotificationFilter|AttributeException|AttributeInUseException|AttributeList|AttributeModificationException|AttributeNotFoundException|AttributeSet|AttributeSetUtilities|AttributeValueExp|AttributedCharacterIterator|AttributedString|Attributes|AudioClip|AudioFileFormat|AudioFileReader|AudioFileWriter|AudioFormat|AudioInputStream|AudioPermission|AudioSystem|AuthPermission|AuthProvider|AuthenticationException|AuthenticationNotSupportedException|Authenticator|AuthorizeCallback|Autoscroll|BMPImageWriteParam|BackingStoreException|BadAttributeValueExpException|BadBinaryOpValueExpException|BadLocationException|BadPaddingException|BadStringOperationException|BandCombineOp|BandedSampleModel|BaseRowSet|BasicArrowButton|BasicAttribute|BasicAttributes|BasicBorders|BasicButtonListener|BasicButtonUI|BasicCheckBoxMenuItemUI|BasicCheckBoxUI|BasicColorChooserUI|BasicComboBoxEditor|BasicComboBoxRenderer|BasicComboBoxUI|BasicComboPopup|BasicControl|BasicDesktopIconUI|BasicDesktopPaneUI|BasicDirectoryModel|BasicEditorPaneUI|BasicFileChooserUI|BasicFormattedTextFieldUI|BasicGraphicsUtils|BasicHTML|BasicIconFactory|BasicInternalFrameTitlePane|BasicInternalFrameUI|BasicLabelUI|BasicListUI|BasicLookAndFeel|BasicMenuBarUI|BasicMenuItemUI|BasicMenuUI|BasicOptionPaneUI|BasicPanelUI|BasicPasswordFieldUI|BasicPermission|BasicPopupMenuSeparatorUI|BasicPopupMenuUI|BasicProgressBarUI|BasicRadioButtonMenuItemUI|BasicRadioButtonUI|BasicRootPaneUI|BasicScrollBarUI|BasicScrollPaneUI|BasicSeparatorUI|BasicSliderUI|BasicSpinnerUI|BasicSplitPaneDivider|BasicSplitPaneUI|BasicStroke|BasicTabbedPaneUI|BasicTableHeaderUI|BasicTableUI|BasicTextAreaUI|BasicTextFieldUI|BasicTextPaneUI|BasicTextUI|BasicToggleButtonUI|BasicToolBarSeparatorUI|BasicToolBarUI|BasicToolTipUI|BasicTreeUI|BasicViewportUI|BatchUpdateException|BeanContext|BeanContextChild|BeanContextChildComponentProxy|BeanContextChildSupport|BeanContextContainerProxy|BeanContextEvent|BeanContextMembershipEvent|BeanContextMembershipListener|BeanContextProxy|BeanContextServiceAvailableEvent|BeanContextServiceProvider|BeanContextServiceProviderBeanInfo|BeanContextServiceRevokedEvent|BeanContextServiceRevokedListener|BeanContextServices|BeanContextServicesListener|BeanContextServicesSupport|BeanContextSupport|BeanDescriptor|BeanInfo|Beans|BevelBorder|Bidi|BigDecimal|BigInteger|BinaryRefAddr|BindException|Binding|BitSet|Blob|BlockView|BlockingQueue|Book|Boolean|BooleanControl|Border|BorderFactory|BorderLayout|BorderUIResource|BoundedRangeModel|Box|BoxLayout|BoxView|BreakIterator|BrokenBarrierException|Buffer|BufferCapabilities|BufferOverflowException|BufferStrategy|BufferUnderflowException|BufferedImage|BufferedImageFilter|BufferedImageOp|BufferedInputStream|BufferedOutputStream|BufferedReader|BufferedWriter|Button|ButtonGroup|ButtonModel|ButtonUI|Byte|ByteArrayInputStream|ByteArrayOutputStream|ByteBuffer|ByteChannel|ByteLookupTable|ByteOrder|CMMException|CRC32|CRL|CRLException|CRLSelector|CSS|CacheRequest|CacheResponse|CachedRowSet|Calendar|Callable|CallableStatement|Callback|CallbackHandler|CancelablePrintJob|CancellationException|CancelledKeyException|CannotProceedException|CannotRedoException|CannotUndoException|Canvas|CardLayout|Caret|CaretEvent|CaretListener|CellEditor|CellEditorListener|CellRendererPane|CertPath|CertPathBuilder|CertPathBuilderException|CertPathBuilderResult|CertPathBuilderSpi|CertPathParameters|CertPathTrustManagerParameters|CertPathValidator|CertPathValidatorException|CertPathValidatorResult|CertPathValidatorSpi|CertSelector|CertStore|CertStoreException|CertStoreParameters|CertStoreSpi|Certificate|CertificateEncodingException|CertificateException|CertificateExpiredException|CertificateFactory|CertificateFactorySpi|CertificateNotYetValidException|CertificateParsingException|ChangeEvent|ChangeListener|ChangedCharSetException|Channel|Channels|CharArrayReader|CharArrayWriter|CharBuffer|CharConversionException|CharSequence|Character|CharacterCodingException|CharacterIterator|Charset|CharsetDecoder|CharsetEncoder|CharsetProvider|Checkbox|CheckboxGroup|CheckboxMenuItem|CheckedInputStream|CheckedOutputStream|Checksum|Choice|ChoiceCallback|ChoiceFormat|Chromaticity|Cipher|CipherInputStream|CipherOutputStream|CipherSpi|Class|ClassCastException|ClassCircularityError|ClassDefinition|ClassDesc|ClassFileTransformer|ClassFormatError|ClassLoader|ClassLoaderRepository|ClassLoadingMXBean|ClassNotFoundException|Clip|Clipboard|ClipboardOwner|Clob|CloneNotSupportedException|Cloneable|Closeable|ClosedByInterruptException|ClosedChannelException|ClosedSelectorException|CodeSigner|CodeSource|CoderMalfunctionError|CoderResult|CodingErrorAction|CollationElementIterator|CollationKey|Collator|Collection|CollectionCertStoreParameters|Collections|Color|ColorChooserComponentFactory|ColorChooserUI|ColorConvertOp|ColorModel|ColorSelectionModel|ColorSpace|ColorSupported|ColorType|ColorUIResource|ComboBoxEditor|ComboBoxModel|ComboBoxUI|ComboPopup|CommunicationException|Comparable|Comparator|CompilationMXBean|Compiler|CompletionService|Component|ComponentAdapter|ComponentColorModel|ComponentEvent|ComponentInputMap|ComponentInputMapUIResource|ComponentListener|ComponentOrientation|ComponentSampleModel|ComponentUI|ComponentView|Composite|CompositeContext|CompositeData|CompositeDataSupport|CompositeName|CompositeType|CompositeView|CompoundBorder|CompoundControl|CompoundEdit|CompoundName|Compression|ConcurrentHashMap|ConcurrentLinkedQueue|ConcurrentMap|ConcurrentModificationException|Condition|Configuration|ConfigurationException|ConfirmationCallback|ConnectException|ConnectIOException|Connection|ConnectionEvent|ConnectionEventListener|ConnectionPendingException|ConnectionPoolDataSource|ConsoleHandler|Constructor|Container|ContainerAdapter|ContainerEvent|ContainerListener|ContainerOrderFocusTraversalPolicy|ContentHandler|ContentHandlerFactory|ContentModel|Context|ContextNotEmptyException|ContextualRenderedImageFactory|Control|ControlFactory|ControllerEventListener|ConvolveOp|CookieHandler|Copies|CopiesSupported|CopyOnWriteArrayList|CopyOnWriteArraySet|CountDownLatch|CounterMonitor|CounterMonitorMBean|CredentialException|CredentialExpiredException|CredentialNotFoundException|CropImageFilter|CubicCurve2D|Currency|Cursor|Customizer|CyclicBarrier|DESKeySpec|DESedeKeySpec|DGC|DHGenParameterSpec|DHKey|DHParameterSpec|DHPrivateKey|DHPrivateKeySpec|DHPublicKey|DHPublicKeySpec|DOMLocator|DOMResult|DOMSource|DSAKey|DSAKeyPairGenerator|DSAParameterSpec|DSAParams|DSAPrivateKey|DSAPrivateKeySpec|DSAPublicKey|DSAPublicKeySpec|DTD|DTDConstants|DataBuffer|DataBufferByte|DataBufferDouble|DataBufferFloat|DataBufferInt|DataBufferShort|DataBufferUShort|DataFlavor|DataFormatException|DataInput|DataInputStream|DataLine|DataOutput|DataOutputStream|DataSource|DataTruncation|DatabaseMetaData|DatagramChannel|DatagramPacket|DatagramSocket|DatagramSocketImpl|DatagramSocketImplFactory|DatatypeConfigurationException|DatatypeConstants|DatatypeFactory|Date|DateFormat|DateFormatSymbols|DateFormatter|DateTimeAtCompleted|DateTimeAtCreation|DateTimeAtProcessing|DateTimeSyntax|DebugGraphics|DecimalFormat|DecimalFormatSymbols|DefaultBoundedRangeModel|DefaultButtonModel|DefaultCaret|DefaultCellEditor|DefaultColorSelectionModel|DefaultComboBoxModel|DefaultDesktopManager|DefaultEditorKit|DefaultFocusManager|DefaultFocusTraversalPolicy|DefaultFormatter|DefaultFormatterFactory|DefaultHighlighter|DefaultKeyboardFocusManager|DefaultListCellRenderer|DefaultListModel|DefaultListSelectionModel|DefaultLoaderRepository|DefaultMenuLayout|DefaultMetalTheme|DefaultMutableTreeNode|DefaultPersistenceDelegate|DefaultSingleSelectionModel|DefaultStyledDocument|DefaultTableCellRenderer|DefaultTableColumnModel|DefaultTableModel|DefaultTextUI|DefaultTreeCellEditor|DefaultTreeCellRenderer|DefaultTreeModel|DefaultTreeSelectionModel|Deflater|DeflaterOutputStream|DelayQueue|Delayed|DelegationPermission|Deprecated|Descriptor|DescriptorAccess|DescriptorSupport|DesignMode|DesktopIconUI|DesktopManager|DesktopPaneUI|Destination|DestroyFailedException|Destroyable|Dialog|Dictionary|DigestException|DigestInputStream|DigestOutputStream|Dimension|Dimension2D|DimensionUIResource|DirContext|DirObjectFactory|DirStateFactory|DirectColorModel|DirectoryManager|DisplayMode|DnDConstants|Doc|DocAttribute|DocAttributeSet|DocFlavor|DocPrintJob|Document|DocumentBuilder|DocumentBuilderFactory|DocumentEvent|DocumentFilter|DocumentListener|DocumentName|DocumentParser|Documented|DomainCombiner|Double|DoubleBuffer|DragGestureEvent|DragGestureListener|DragGestureRecognizer|DragSource|DragSourceAdapter|DragSourceContext|DragSourceDragEvent|DragSourceDropEvent|DragSourceEvent|DragSourceListener|DragSourceMotionListener|Driver|DriverManager|DriverPropertyInfo|DropTarget|DropTargetAdapter|DropTargetContext|DropTargetDragEvent|DropTargetDropEvent|DropTargetEvent|DropTargetListener|DuplicateFormatFlagsException|Duration|DynamicMBean|ECField|ECFieldF2m|ECFieldFp|ECGenParameterSpec|ECKey|ECParameterSpec|ECPoint|ECPrivateKey|ECPrivateKeySpec|ECPublicKey|ECPublicKeySpec|EOFException|EditorKit|Element|ElementIterator|ElementType|Ellipse2D|EllipticCurve|EmptyBorder|EmptyStackException|EncodedKeySpec|Encoder|EncryptedPrivateKeyInfo|Entity|Enum|EnumConstantNotPresentException|EnumControl|EnumMap|EnumSet|EnumSyntax|Enumeration|Error|ErrorListener|ErrorManager|EtchedBorder|Event|EventContext|EventDirContext|EventHandler|EventListener|EventListenerList|EventListenerProxy|EventObject|EventQueue|EventSetDescriptor|Exception|ExceptionInInitializerError|ExceptionListener|Exchanger|ExecutionException|Executor|ExecutorCompletionService|ExecutorService|Executors|ExemptionMechanism|ExemptionMechanismException|ExemptionMechanismSpi|ExpandVetoException|ExportException|Expression|ExtendedRequest|ExtendedResponse|Externalizable|FactoryConfigurationError|FailedLoginException|FeatureDescriptor|Fidelity|Field|FieldPosition|FieldView|File|FileCacheImageInputStream|FileCacheImageOutputStream|FileChannel|FileChooserUI|FileDescriptor|FileDialog|FileFilter|FileHandler|FileImageInputStream|FileImageOutputStream|FileInputStream|FileLock|FileLockInterruptionException|FileNameMap|FileNotFoundException|FileOutputStream|FilePermission|FileReader|FileSystemView|FileView|FileWriter|FilenameFilter|Filter|FilterInputStream|FilterOutputStream|FilterReader|FilterWriter|FilteredImageSource|FilteredRowSet|Finishings|FixedHeightLayoutCache|FlatteningPathIterator|FlavorEvent|FlavorException|FlavorListener|FlavorMap|FlavorTable|Float|FloatBuffer|FloatControl|FlowLayout|FlowView|Flushable|FocusAdapter|FocusEvent|FocusListener|FocusManager|FocusTraversalPolicy|Font|FontFormatException|FontMetrics|FontRenderContext|FontUIResource|FormSubmitEvent|FormView|Format|FormatConversionProvider|FormatFlagsConversionMismatchException|Formattable|FormattableFlags|Formatter|FormatterClosedException|Frame|Future|FutureTask|GZIPInputStream|GZIPOutputStream|GapContent|GarbageCollectorMXBean|GatheringByteChannel|GaugeMonitor|GaugeMonitorMBean|GeneralPath|GeneralSecurityException|GenericArrayType|GenericDeclaration|GenericSignatureFormatError|GlyphJustificationInfo|GlyphMetrics|GlyphVector|GlyphView|GradientPaint|GraphicAttribute|Graphics|Graphics2D|GraphicsConfigTemplate|GraphicsConfiguration|GraphicsDevice|GraphicsEnvironment|GrayFilter|GregorianCalendar|GridBagConstraints|GridBagLayout|GridLayout|Group|Guard|GuardedObject|HTML|HTMLDocument|HTMLEditorKit|HTMLFrameHyperlinkEvent|HTMLWriter|Handler|HandshakeCompletedEvent|HandshakeCompletedListener|HasControls|HashAttributeSet|HashDocAttributeSet|HashMap|HashPrintJobAttributeSet|HashPrintRequestAttributeSet|HashPrintServiceAttributeSet|HashSet|Hashtable|HeadlessException|HierarchyBoundsAdapter|HierarchyBoundsListener|HierarchyEvent|HierarchyListener|Highlighter|HostnameVerifier|HttpRetryException|HttpURLConnection|HttpsURLConnection|HyperlinkEvent|HyperlinkListener|ICC_ColorSpace|ICC_Profile|ICC_ProfileGray|ICC_ProfileRGB|IIOByteBuffer|IIOException|IIOImage|IIOInvalidTreeException|IIOMetadata|IIOMetadataController|IIOMetadataFormat|IIOMetadataFormatImpl|IIOMetadataNode|IIOParam|IIOParamController|IIOReadProgressListener|IIOReadUpdateListener|IIOReadWarningListener|IIORegistry|IIOServiceProvider|IIOWriteProgressListener|IIOWriteWarningListener|IOException|Icon|IconUIResource|IconView|Identity|IdentityHashMap|IdentityScope|IllegalAccessError|IllegalAccessException|IllegalArgumentException|IllegalBlockSizeException|IllegalBlockingModeException|IllegalCharsetNameException|IllegalClassFormatException|IllegalComponentStateException|IllegalFormatCodePointException|IllegalFormatConversionException|IllegalFormatException|IllegalFormatFlagsException|IllegalFormatPrecisionException|IllegalFormatWidthException|IllegalMonitorStateException|IllegalPathStateException|IllegalSelectorException|IllegalStateException|IllegalThreadStateException|Image|ImageCapabilities|ImageConsumer|ImageFilter|ImageGraphicAttribute|ImageIO|ImageIcon|ImageInputStream|ImageInputStreamImpl|ImageInputStreamSpi|ImageObserver|ImageOutputStream|ImageOutputStreamImpl|ImageOutputStreamSpi|ImageProducer|ImageReadParam|ImageReader|ImageReaderSpi|ImageReaderWriterSpi|ImageTranscoder|ImageTranscoderSpi|ImageTypeSpecifier|ImageView|ImageWriteParam|ImageWriter|ImageWriterSpi|ImagingOpException|IncompatibleClassChangeError|IncompleteAnnotationException|IndexColorModel|IndexOutOfBoundsException|IndexedPropertyChangeEvent|IndexedPropertyDescriptor|Inet4Address|Inet6Address|InetAddress|InetSocketAddress|Inflater|InflaterInputStream|InheritableThreadLocal|Inherited|InitialContext|InitialContextFactory|InitialContextFactoryBuilder|InitialDirContext|InitialLdapContext|InlineView|InputContext|InputEvent|InputMap|InputMapUIResource|InputMethod|InputMethodContext|InputMethodDescriptor|InputMethodEvent|InputMethodHighlight|InputMethodListener|InputMethodRequests|InputMismatchException|InputStream|InputStreamReader|InputSubset|InputVerifier|Insets|InsetsUIResource|InstanceAlreadyExistsException|InstanceNotFoundException|InstantiationError|InstantiationException|Instrument|Instrumentation|InsufficientResourcesException|IntBuffer|Integer|IntegerSyntax|InternalError|InternalFrameAdapter|InternalFrameEvent|InternalFrameFocusTraversalPolicy|InternalFrameListener|InternalFrameUI|InternationalFormatter|InterruptedException|InterruptedIOException|InterruptedNamingException|InterruptibleChannel|IntrospectionException|Introspector|InvalidActivityException|InvalidAlgorithmParameterException|InvalidApplicationException|InvalidAttributeIdentifierException|InvalidAttributeValueException|InvalidAttributesException|InvalidClassException|InvalidDnDOperationException|InvalidKeyException|InvalidKeySpecException|InvalidMarkException|InvalidMidiDataException|InvalidNameException|InvalidObjectException|InvalidOpenTypeException|InvalidParameterException|InvalidParameterSpecException|InvalidPreferencesFormatException|InvalidPropertiesFormatException|InvalidRelationIdException|InvalidRelationServiceException|InvalidRelationTypeException|InvalidRoleInfoException|InvalidRoleValueException|InvalidSearchControlsException|InvalidSearchFilterException|InvalidTargetObjectTypeException|InvalidTransactionException|InvocationEvent|InvocationHandler|InvocationTargetException|ItemEvent|ItemListener|ItemSelectable|Iterable|Iterator|IvParameterSpec|JApplet|JButton|JCheckBox|JCheckBoxMenuItem|JColorChooser|JComboBox|JComponent|JDesktopPane|JDialog|JEditorPane|JFileChooser|JFormattedTextField|JFrame|JInternalFrame|JLabel|JLayeredPane|JList|JMException|JMRuntimeException|JMXAuthenticator|JMXConnectionNotification|JMXConnector|JMXConnectorFactory|JMXConnectorProvider|JMXConnectorServer|JMXConnectorServerFactory|JMXConnectorServerMBean|JMXConnectorServerProvider|JMXPrincipal|JMXProviderException|JMXServerErrorException|JMXServiceURL|JMenu|JMenuBar|JMenuItem|JOptionPane|JPEGHuffmanTable|JPEGImageReadParam|JPEGImageWriteParam|JPEGQTable|JPanel|JPasswordField|JPopupMenu|JProgressBar|JRadioButton|JRadioButtonMenuItem|JRootPane|JScrollBar|JScrollPane|JSeparator|JSlider|JSpinner|JSplitPane|JTabbedPane|JTable|JTableHeader|JTextArea|JTextComponent|JTextField|JTextPane|JToggleButton|JToolBar|JToolTip|JTree|JViewport|JWindow|JarEntry|JarException|JarFile|JarInputStream|JarOutputStream|JarURLConnection|JdbcRowSet|JobAttributes|JobHoldUntil|JobImpressions|JobImpressionsCompleted|JobImpressionsSupported|JobKOctets|JobKOctetsProcessed|JobKOctetsSupported|JobMediaSheets|JobMediaSheetsCompleted|JobMediaSheetsSupported|JobMessageFromOperator|JobName|JobOriginatingUserName|JobPriority|JobPrioritySupported|JobSheets|JobState|JobStateReason|JobStateReasons|JoinRowSet|Joinable|KerberosKey|KerberosPrincipal|KerberosTicket|Kernel|Key|KeyAdapter|KeyAgreement|KeyAgreementSpi|KeyAlreadyExistsException|KeyEvent|KeyEventDispatcher|KeyEventPostProcessor|KeyException|KeyFactory|KeyFactorySpi|KeyGenerator|KeyGeneratorSpi|KeyListener|KeyManagementException|KeyManager|KeyManagerFactory|KeyManagerFactorySpi|KeyPair|KeyPairGenerator|KeyPairGeneratorSpi|KeyRep|KeySpec|KeyStore|KeyStoreBuilderParameters|KeyStoreException|KeyStoreSpi|KeyStroke|KeyboardFocusManager|Keymap|LDAPCertStoreParameters|Label|LabelUI|LabelView|LanguageCallback|LastOwnerException|LayeredHighlighter|LayoutFocusTraversalPolicy|LayoutManager|LayoutManager2|LayoutQueue|LdapContext|LdapName|LdapReferralException|Lease|Level|LimitExceededException|Line|Line2D|LineBorder|LineBreakMeasurer|LineEvent|LineListener|LineMetrics|LineNumberInputStream|LineNumberReader|LineUnavailableException|LinkException|LinkLoopException|LinkRef|LinkageError|LinkedBlockingQueue|LinkedHashMap|LinkedHashSet|LinkedList|List|ListCellRenderer|ListDataEvent|ListDataListener|ListIterator|ListModel|ListResourceBundle|ListSelectionEvent|ListSelectionListener|ListSelectionModel|ListUI|ListView|ListenerNotFoundException|LoaderHandler|Locale|LocateRegistry|Lock|LockSupport|LogManager|LogRecord|LogStream|Logger|LoggingMXBean|LoggingPermission|LoginContext|LoginException|LoginModule|Long|LongBuffer|LookAndFeel|LookupOp|LookupTable|MBeanAttributeInfo|MBeanConstructorInfo|MBeanException|MBeanFeatureInfo|MBeanInfo|MBeanNotificationInfo|MBeanOperationInfo|MBeanParameterInfo|MBeanPermission|MBeanRegistration|MBeanRegistrationException|MBeanServer|MBeanServerBuilder|MBeanServerConnection|MBeanServerDelegate|MBeanServerDelegateMBean|MBeanServerFactory|MBeanServerForwarder|MBeanServerInvocationHandler|MBeanServerNotification|MBeanServerNotificationFilter|MBeanServerPermission|MBeanTrustPermission|MGF1ParameterSpec|MLet|MLetMBean|Mac|MacSpi|MalformedInputException|MalformedLinkException|MalformedObjectNameException|MalformedParameterizedTypeException|MalformedURLException|ManageReferralControl|ManagementFactory|ManagementPermission|ManagerFactoryParameters|Manifest|Map|MappedByteBuffer|MarshalException|MarshalledObject|MaskFormatter|MatchResult|Matcher|Math|MathContext|MatteBorder|Media|MediaName|MediaPrintableArea|MediaSize|MediaSizeName|MediaTracker|MediaTray|Member|MemoryCacheImageInputStream|MemoryCacheImageOutputStream|MemoryHandler|MemoryImageSource|MemoryMXBean|MemoryManagerMXBean|MemoryNotificationInfo|MemoryPoolMXBean|MemoryType|MemoryUsage|Menu|MenuBar|MenuBarUI|MenuComponent|MenuContainer|MenuDragMouseEvent|MenuDragMouseListener|MenuElement|MenuEvent|MenuItem|MenuItemUI|MenuKeyEvent|MenuKeyListener|MenuListener|MenuSelectionManager|MenuShortcut|MessageDigest|MessageDigestSpi|MessageFormat|MetaEventListener|MetaMessage|MetalBorders|MetalButtonUI|MetalCheckBoxIcon|MetalCheckBoxUI|MetalComboBoxButton|MetalComboBoxEditor|MetalComboBoxIcon|MetalComboBoxUI|MetalDesktopIconUI|MetalFileChooserUI|MetalIconFactory|MetalInternalFrameTitlePane|MetalInternalFrameUI|MetalLabelUI|MetalLookAndFeel|MetalMenuBarUI|MetalPopupMenuSeparatorUI|MetalProgressBarUI|MetalRadioButtonUI|MetalRootPaneUI|MetalScrollBarUI|MetalScrollButton|MetalScrollPaneUI|MetalSeparatorUI|MetalSliderUI|MetalSplitPaneUI|MetalTabbedPaneUI|MetalTextFieldUI|MetalTheme|MetalToggleButtonUI|MetalToolBarUI|MetalToolTipUI|MetalTreeUI|Method|MethodDescriptor|MidiChannel|MidiDevice|MidiDeviceProvider|MidiEvent|MidiFileFormat|MidiFileReader|MidiFileWriter|MidiMessage|MidiSystem|MidiUnavailableException|MimeTypeParseException|MinimalHTMLWriter|MissingFormatArgumentException|MissingFormatWidthException|MissingResourceException|Mixer|MixerProvider|ModelMBean|ModelMBeanAttributeInfo|ModelMBeanConstructorInfo|ModelMBeanInfo|ModelMBeanInfoSupport|ModelMBeanNotificationBroadcaster|ModelMBeanNotificationInfo|ModelMBeanOperationInfo|ModificationItem|Modifier|Monitor|MonitorMBean|MonitorNotification|MonitorSettingException|MouseAdapter|MouseDragGestureRecognizer|MouseEvent|MouseInfo|MouseInputAdapter|MouseInputListener|MouseListener|MouseMotionAdapter|MouseMotionListener|MouseWheelEvent|MouseWheelListener|MultiButtonUI|MultiColorChooserUI|MultiComboBoxUI|MultiDesktopIconUI|MultiDesktopPaneUI|MultiDoc|MultiDocPrintJob|MultiDocPrintService|MultiFileChooserUI|MultiInternalFrameUI|MultiLabelUI|MultiListUI|MultiLookAndFeel|MultiMenuBarUI|MultiMenuItemUI|MultiOptionPaneUI|MultiPanelUI|MultiPixelPackedSampleModel|MultiPopupMenuUI|MultiProgressBarUI|MultiRootPaneUI|MultiScrollBarUI|MultiScrollPaneUI|MultiSeparatorUI|MultiSliderUI|MultiSpinnerUI|MultiSplitPaneUI|MultiTabbedPaneUI|MultiTableHeaderUI|MultiTableUI|MultiTextUI|MultiToolBarUI|MultiToolTipUI|MultiTreeUI|MultiViewportUI|MulticastSocket|MultipleDocumentHandling|MultipleMaster|MutableAttributeSet|MutableComboBoxModel|MutableTreeNode|Name|NameAlreadyBoundException|NameCallback|NameClassPair|NameNotFoundException|NameParser|NamespaceChangeListener|NamespaceContext|Naming|NamingEnumeration|NamingEvent|NamingException|NamingExceptionEvent|NamingListener|NamingManager|NamingSecurityException|NavigationFilter|NegativeArraySizeException|NetPermission|NetworkInterface|NoClassDefFoundError|NoConnectionPendingException|NoInitialContextException|NoPermissionException|NoRouteToHostException|NoSuchAlgorithmException|NoSuchAttributeException|NoSuchElementException|NoSuchFieldError|NoSuchFieldException|NoSuchMethodError|NoSuchMethodException|NoSuchObjectException|NoSuchPaddingException|NoSuchProviderException|NodeChangeEvent|NodeChangeListener|NonReadableChannelException|NonWritableChannelException|NoninvertibleTransformException|NotActiveException|NotBoundException|NotCompliantMBeanException|NotContextException|NotOwnerException|NotSerializableException|NotYetBoundException|NotYetConnectedException|Notification|NotificationBroadcaster|NotificationBroadcasterSupport|NotificationEmitter|NotificationFilter|NotificationFilterSupport|NotificationListener|NotificationResult|NullCipher|NullPointerException|Number|NumberFormat|NumberFormatException|NumberFormatter|NumberOfDocuments|NumberOfInterveningJobs|NumberUp|NumberUpSupported|NumericShaper|OAEPParameterSpec|ObjID|Object|ObjectChangeListener|ObjectFactory|ObjectFactoryBuilder|ObjectInput|ObjectInputStream|ObjectInputValidation|ObjectInstance|ObjectName|ObjectOutput|ObjectOutputStream|ObjectStreamClass|ObjectStreamConstants|ObjectStreamException|ObjectStreamField|ObjectView|Observable|Observer|OceanTheme|OpenDataException|OpenMBeanAttributeInfo|OpenMBeanAttributeInfoSupport|OpenMBeanConstructorInfo|OpenMBeanConstructorInfoSupport|OpenMBeanInfo|OpenMBeanInfoSupport|OpenMBeanOperationInfo|OpenMBeanOperationInfoSupport|OpenMBeanParameterInfo|OpenMBeanParameterInfoSupport|OpenType|OperatingSystemMXBean|Operation|OperationNotSupportedException|OperationsException|Option|OptionPaneUI|OptionalDataException|OrientationRequested|OutOfMemoryError|OutputDeviceAssigned|OutputKeys|OutputStream|OutputStreamWriter|OverlappingFileLockException|OverlayLayout|Override|Owner|PBEKey|PBEKeySpec|PBEParameterSpec|PDLOverrideSupported|PKCS8EncodedKeySpec|PKIXBuilderParameters|PKIXCertPathBuilderResult|PKIXCertPathChecker|PKIXCertPathValidatorResult|PKIXParameters|PSSParameterSpec|PSource|Pack200|Package|PackedColorModel|PageAttributes|PageFormat|PageRanges|Pageable|PagedResultsControl|PagedResultsResponseControl|PagesPerMinute|PagesPerMinuteColor|Paint|PaintContext|PaintEvent|Panel|PanelUI|Paper|ParagraphView|ParameterBlock|ParameterDescriptor|ParameterMetaData|ParameterizedType|ParseException|ParsePosition|Parser|ParserConfigurationException|ParserDelegator|PartialResultException|PasswordAuthentication|PasswordCallback|PasswordView|Patch|PathIterator|Pattern|PatternSyntaxException|Permission|PermissionCollection|Permissions|PersistenceDelegate|PersistentMBean|PhantomReference|Pipe|PipedInputStream|PipedOutputStream|PipedReader|PipedWriter|PixelGrabber|PixelInterleavedSampleModel|PlainDocument|PlainView|Point|Point2D|PointerInfo|Policy|PolicyNode|PolicyQualifierInfo|Polygon|PooledConnection|Popup|PopupFactory|PopupMenu|PopupMenuEvent|PopupMenuListener|PopupMenuUI|Port|PortUnreachableException|PortableRemoteObject|PortableRemoteObjectDelegate|Position|Predicate|PreferenceChangeEvent|PreferenceChangeListener|Preferences|PreferencesFactory|PreparedStatement|PresentationDirection|Principal|PrintEvent|PrintException|PrintGraphics|PrintJob|PrintJobAdapter|PrintJobAttribute|PrintJobAttributeEvent|PrintJobAttributeListener|PrintJobAttributeSet|PrintJobEvent|PrintJobListener|PrintQuality|PrintRequestAttribute|PrintRequestAttributeSet|PrintService|PrintServiceAttribute|PrintServiceAttributeEvent|PrintServiceAttributeListener|PrintServiceAttributeSet|PrintServiceLookup|PrintStream|PrintWriter|Printable|PrinterAbortException|PrinterException|PrinterGraphics|PrinterIOException|PrinterInfo|PrinterIsAcceptingJobs|PrinterJob|PrinterLocation|PrinterMakeAndModel|PrinterMessageFromOperator|PrinterMoreInfo|PrinterMoreInfoManufacturer|PrinterName|PrinterResolution|PrinterState|PrinterStateReason|PrinterStateReasons|PrinterURI|PriorityBlockingQueue|PriorityQueue|PrivateClassLoader|PrivateCredentialPermission|PrivateKey|PrivateMLet|PrivilegedAction|PrivilegedActionException|PrivilegedExceptionAction|Process|ProcessBuilder|ProfileDataException|ProgressBarUI|ProgressMonitor|ProgressMonitorInputStream|Properties|PropertyChangeEvent|PropertyChangeListener|PropertyChangeListenerProxy|PropertyChangeSupport|PropertyDescriptor|PropertyEditor|PropertyEditorManager|PropertyEditorSupport|PropertyPermission|PropertyResourceBundle|PropertyVetoException|ProtectionDomain|ProtocolException|Provider|ProviderException|Proxy|ProxySelector|PublicKey|PushbackInputStream|PushbackReader|QName|QuadCurve2D|Query|QueryEval|QueryExp|Queue|QueuedJobCount|RC2ParameterSpec|RC5ParameterSpec|RGBImageFilter|RMIClassLoader|RMIClassLoaderSpi|RMIClientSocketFactory|RMIConnection|RMIConnectionImpl|RMIConnectionImpl_Stub|RMIConnector|RMIConnectorServer|RMIFailureHandler|RMIIIOPServerImpl|RMIJRMPServerImpl|RMISecurityException|RMISecurityManager|RMIServer|RMIServerImpl|RMIServerImpl_Stub|RMIServerSocketFactory|RMISocketFactory|RSAKey|RSAKeyGenParameterSpec|RSAMultiPrimePrivateCrtKey|RSAMultiPrimePrivateCrtKeySpec|RSAOtherPrimeInfo|RSAPrivateCrtKey|RSAPrivateCrtKeySpec|RSAPrivateKey|RSAPrivateKeySpec|RSAPublicKey|RSAPublicKeySpec|RTFEditorKit|Random|RandomAccess|RandomAccessFile|Raster|RasterFormatException|RasterOp|Rdn|ReadOnlyBufferException|ReadWriteLock|Readable|ReadableByteChannel|Reader|RealmCallback|RealmChoiceCallback|Receiver|Rectangle|Rectangle2D|RectangularShape|ReentrantLock|ReentrantReadWriteLock|Ref|RefAddr|Reference|ReferenceQueue|ReferenceUriSchemesSupported|Referenceable|ReferralException|ReflectPermission|ReflectionException|RefreshFailedException|Refreshable|Region|RegisterableService|Registry|RegistryHandler|RejectedExecutionException|RejectedExecutionHandler|Relation|RelationException|RelationNotFoundException|RelationNotification|RelationService|RelationServiceMBean|RelationServiceNotRegisteredException|RelationSupport|RelationSupportMBean|RelationType|RelationTypeNotFoundException|RelationTypeSupport|Remote|RemoteCall|RemoteException|RemoteObject|RemoteObjectInvocationHandler|RemoteRef|RemoteServer|RemoteStub|RenderContext|RenderableImage|RenderableImageOp|RenderableImageProducer|RenderedImage|RenderedImageFactory|Renderer|RenderingHints|RepaintManager|ReplicateScaleFilter|RequestingUserName|RequiredModelMBean|RescaleOp|ResolutionSyntax|ResolveResult|Resolver|ResourceBundle|ResponseCache|Result|ResultSet|ResultSetMetaData|Retention|RetentionPolicy|ReverbType|Robot|Role|RoleInfo|RoleInfoNotFoundException|RoleList|RoleNotFoundException|RoleResult|RoleStatus|RoleUnresolved|RoleUnresolvedList|RootPaneContainer|RootPaneUI|RoundRectangle2D|RoundingMode|RowMapper|RowSet|RowSetEvent|RowSetInternal|RowSetListener|RowSetMetaData|RowSetMetaDataImpl|RowSetReader|RowSetWarning|RowSetWriter|RuleBasedCollator|Runnable|Runtime|RuntimeErrorException|RuntimeException|RuntimeMBeanException|RuntimeMXBean|RuntimeOperationsException|RuntimePermission|SAXParser|SAXParserFactory|SAXResult|SAXSource|SAXTransformerFactory|SQLData|SQLException|SQLInput|SQLInputImpl|SQLOutput|SQLOutputImpl|SQLPermission|SQLWarning|SSLContext|SSLContextSpi|SSLEngine|SSLEngineResult|SSLException|SSLHandshakeException|SSLKeyException|SSLPeerUnverifiedException|SSLPermission|SSLProtocolException|SSLServerSocket|SSLServerSocketFactory|SSLSession|SSLSessionBindingEvent|SSLSessionBindingListener|SSLSessionContext|SSLSocket|SSLSocketFactory|SampleModel|Sasl|SaslClient|SaslClientFactory|SaslException|SaslServer|SaslServerFactory|Savepoint|Scanner|ScatteringByteChannel|ScheduledExecutorService|ScheduledFuture|ScheduledThreadPoolExecutor|Schema|SchemaFactory|SchemaFactoryLoader|SchemaViolationException|ScrollBarUI|ScrollPane|ScrollPaneAdjustable|ScrollPaneConstants|ScrollPaneLayout|ScrollPaneUI|Scrollable|Scrollbar|SealedObject|SearchControls|SearchResult|SecretKey|SecretKeyFactory|SecretKeyFactorySpi|SecretKeySpec|SecureCacheResponse|SecureClassLoader|SecureRandom|SecureRandomSpi|Security|SecurityException|SecurityManager|SecurityPermission|Segment|SelectableChannel|SelectionKey|Selector|SelectorProvider|Semaphore|SeparatorUI|Sequence|SequenceInputStream|Sequencer|SerialArray|SerialBlob|SerialClob|SerialDatalink|SerialException|SerialJavaObject|SerialRef|SerialStruct|Serializable|SerializablePermission|ServerCloneException|ServerError|ServerException|ServerNotActiveException|ServerRef|ServerRuntimeException|ServerSocket|ServerSocketChannel|ServerSocketFactory|ServiceNotFoundException|ServicePermission|ServiceRegistry|ServiceUI|ServiceUIFactory|ServiceUnavailableException|Set|SetOfIntegerSyntax|Severity|Shape|ShapeGraphicAttribute|SheetCollate|Short|ShortBuffer|ShortBufferException|ShortLookupTable|ShortMessage|Sides|Signature|SignatureException|SignatureSpi|SignedObject|Signer|SimpleAttributeSet|SimpleBeanInfo|SimpleDateFormat|SimpleDoc|SimpleFormatter|SimpleTimeZone|SimpleType|SinglePixelPackedSampleModel|SingleSelectionModel|Size2DSyntax|SizeLimitExceededException|SizeRequirements|SizeSequence|Skeleton|SkeletonMismatchException|SkeletonNotFoundException|SliderUI|Socket|SocketAddress|SocketChannel|SocketException|SocketFactory|SocketHandler|SocketImpl|SocketImplFactory|SocketOptions|SocketPermission|SocketSecurityException|SocketTimeoutException|SoftBevelBorder|SoftReference|SortControl|SortKey|SortResponseControl|SortedMap|SortedSet|SortingFocusTraversalPolicy|Soundbank|SoundbankReader|SoundbankResource|Source|SourceDataLine|SourceLocator|SpinnerDateModel|SpinnerListModel|SpinnerModel|SpinnerNumberModel|SpinnerUI|SplitPaneUI|Spring|SpringLayout|SslRMIClientSocketFactory|SslRMIServerSocketFactory|Stack|StackOverflowError|StackTraceElement|StandardMBean|StartTlsRequest|StartTlsResponse|StateEdit|StateEditable|StateFactory|Statement|StreamCorruptedException|StreamHandler|StreamPrintService|StreamPrintServiceFactory|StreamResult|StreamSource|StreamTokenizer|StrictMath|String|StringBuffer|StringBufferInputStream|StringBuilder|StringCharacterIterator|StringContent|StringIndexOutOfBoundsException|StringMonitor|StringMonitorMBean|StringReader|StringRefAddr|StringSelection|StringTokenizer|StringValueExp|StringWriter|Stroke|Struct|Stub|StubDelegate|StubNotFoundException|Style|StyleConstants|StyleContext|StyleSheet|StyledDocument|StyledEditorKit|Subject|SubjectDelegationPermission|SubjectDomainCombiner|SupportedValuesAttribute|SuppressWarnings|SwingConstants|SwingPropertyChangeSupport|SwingUtilities|SyncFactory|SyncFactoryException|SyncFailedException|SyncProvider|SyncProviderException|SyncResolver|SynchronousQueue|SynthConstants|SynthContext|SynthGraphicsUtils|SynthLookAndFeel|SynthPainter|SynthStyle|SynthStyleFactory|Synthesizer|SysexMessage|System|SystemColor|SystemFlavorMap|TabExpander|TabSet|TabStop|TabableView|TabbedPaneUI|TableCellEditor|TableCellRenderer|TableColumn|TableColumnModel|TableColumnModelEvent|TableColumnModelListener|TableHeaderUI|TableModel|TableModelEvent|TableModelListener|TableUI|TableView|TabularData|TabularDataSupport|TabularType|TagElement|Target|TargetDataLine|TargetedNotification|Templates|TemplatesHandler|TextAction|TextArea|TextAttribute|TextComponent|TextEvent|TextField|TextHitInfo|TextInputCallback|TextLayout|TextListener|TextMeasurer|TextOutputCallback|TextSyntax|TextUI|TexturePaint|Thread|ThreadDeath|ThreadFactory|ThreadGroup|ThreadInfo|ThreadLocal|ThreadMXBean|ThreadPoolExecutor|Throwable|Tie|TileObserver|Time|TimeLimitExceededException|TimeUnit|TimeZone|TimeoutException|Timer|TimerAlarmClockNotification|TimerMBean|TimerNotification|TimerTask|Timestamp|TitledBorder|TooManyListenersException|ToolBarUI|ToolTipManager|ToolTipUI|Toolkit|Track|TransactionRequiredException|TransactionRolledbackException|TransactionalWriter|TransferHandler|Transferable|TransformAttribute|Transformer|TransformerConfigurationException|TransformerException|TransformerFactory|TransformerFactoryConfigurationError|TransformerHandler|Transmitter|Transparency|TreeCellEditor|TreeCellRenderer|TreeExpansionEvent|TreeExpansionListener|TreeMap|TreeModel|TreeModelEvent|TreeModelListener|TreeNode|TreePath|TreeSelectionEvent|TreeSelectionListener|TreeSelectionModel|TreeSet|TreeUI|TreeWillExpandListener|TrustAnchor|TrustManager|TrustManagerFactory|TrustManagerFactorySpi|Type|TypeInfoProvider|TypeNotPresentException|TypeVariable|Types|UID|UIDefaults|UIManager|UIResource|URI|URIException|URIResolver|URISyntax|URISyntaxException|URL|URLClassLoader|URLConnection|URLDecoder|URLEncoder|URLStreamHandler|URLStreamHandlerFactory|UTFDataFormatException|UUID|UndeclaredThrowableException|UndoManager|UndoableEdit|UndoableEditEvent|UndoableEditListener|UndoableEditSupport|UnexpectedException|UnicastRemoteObject|UnknownError|UnknownFormatConversionException|UnknownFormatFlagsException|UnknownGroupException|UnknownHostException|UnknownObjectException|UnknownServiceException|UnmappableCharacterException|UnmarshalException|UnmodifiableClassException|UnmodifiableSetException|UnrecoverableEntryException|UnrecoverableKeyException|Unreferenced|UnresolvedAddressException|UnresolvedPermission|UnsatisfiedLinkError|UnsolicitedNotification|UnsolicitedNotificationEvent|UnsolicitedNotificationListener|UnsupportedAddressTypeException|UnsupportedAudioFileException|UnsupportedCallbackException|UnsupportedCharsetException|UnsupportedClassVersionError|UnsupportedEncodingException|UnsupportedFlavorException|UnsupportedLookAndFeelException|UnsupportedOperationException|Util|UtilDelegate|Utilities|VMID|Validator|ValidatorHandler|ValueExp|ValueHandler|ValueHandlerMultiFormat|VariableHeightLayoutCache|Vector|VerifyError|VetoableChangeListener|VetoableChangeListenerProxy|VetoableChangeSupport|View|ViewFactory|ViewportLayout|ViewportUI|VirtualMachineError|Visibility|VoiceStatus|Void|VolatileImage|WeakHashMap|WeakReference|WebRowSet|WildcardType|Window|WindowAdapter|WindowConstants|WindowEvent|WindowFocusListener|WindowListener|WindowStateListener|WrappedPlainView|WritableByteChannel|WritableRaster|WritableRenderedImage|WriteAbortedException|Writer|X500Principal|X500PrivateCredential|X509CRL|X509CRLEntry|X509CRLSelector|X509CertSelector|X509Certificate|X509EncodedKeySpec|X509ExtendedKeyManager|X509Extension|X509KeyManager|X509TrustManager|XAConnection|XADataSource|XAException|XAResource|XMLConstants|XMLDecoder|XMLEncoder|XMLFormatter|XMLGregorianCalendar|XMLParseException|XPath|XPathConstants|XPathException|XPathExpression|XPathExpressionException|XPathFactory|XPathFactoryConfigurationException|XPathFunction|XPathFunctionException|XPathFunctionResolver|XPathVariableResolver|Xid|XmlReader|XmlWriter|ZipEntry|ZipException|ZipFile|ZipInputStream|ZipOutputStream|ZoneView)\b
|
51
|
+
uuid: B3A64888-EBBB-4436-8D9E-F1169C5D7613
|
52
|
+
foldingStartMarker: (\{\s*$|^\s*// \{\{\{)
|
53
|
+
patterns:
|
54
|
+
- name: comment.block.empty.groovy
|
55
|
+
match: /\*\*/
|
56
|
+
- name: comment.block.documentation.groovy
|
57
|
+
begin: (^\s*)?/\*\*
|
58
|
+
end: \*/(\s*\n)?
|
59
|
+
patterns:
|
60
|
+
- captures:
|
61
|
+
"1":
|
62
|
+
name: keyword.other.documentation.params.groovy
|
63
|
+
"3":
|
64
|
+
name: keyword.other.documentation.value.groovy
|
65
|
+
match: \*\s*(@(param|throws))\s*([a-z]\w+)\s*
|
66
|
+
- name: keyword.other.documentation.link.groovy
|
67
|
+
match: "{@link\\s+\\S*\\s+(\\S*)}"
|
68
|
+
- captures:
|
69
|
+
"1":
|
70
|
+
name: variable.parameter.documentation.groovy
|
71
|
+
match: \*\s*(@[a-zA-Z0-9_-]+)\s*
|
72
|
+
- name: meta.definition.class.groovy
|
73
|
+
captures:
|
74
|
+
"1":
|
75
|
+
name: storage.modifier.groovy
|
76
|
+
"3":
|
77
|
+
name: storage.type.groovy
|
78
|
+
"4":
|
79
|
+
name: entity.name.type.class.groovy
|
80
|
+
begin: |-
|
81
|
+
(?x)^\s*
|
82
|
+
((?:\b(def|public|private|protected|static|final|native|synchronized|abstract|threadsafe|transient)\b\s*)*) # modifier
|
83
|
+
(class|interface)\s+
|
84
|
+
(\w+)\s* # identifier
|
85
|
+
end: (?={)
|
86
|
+
patterns:
|
87
|
+
- name: meta.definition.class.extends.groovy
|
88
|
+
captures:
|
89
|
+
"1":
|
90
|
+
name: storage.modifier.groovy
|
91
|
+
begin: \b(extends)\b\s+
|
92
|
+
end: (?={|implements)
|
93
|
+
patterns:
|
94
|
+
- include: "#all-types"
|
95
|
+
- name: meta.definition.class.implements.groovy
|
96
|
+
captures:
|
97
|
+
"1":
|
98
|
+
name: storage.modifier.groovy
|
99
|
+
begin: \b(implements)\b\s+
|
100
|
+
end: (?={|extends)
|
101
|
+
patterns:
|
102
|
+
- include: "#all-types"
|
103
|
+
- name: meta.definition.constructor.groovy
|
104
|
+
captures:
|
105
|
+
"1":
|
106
|
+
name: storage.modifier.groovy
|
107
|
+
"3":
|
108
|
+
name: entity.name.function.constructor.groovy
|
109
|
+
begin: |-
|
110
|
+
(?x)^\s*
|
111
|
+
((?:\b(public|private|protected|static|final|native|synchronized|abstract|threadsafe|transient)\b\s*)*) # modifier
|
112
|
+
((?!(if|while|catch|this|print|return|synchronized|switch))\w+)\s* # identifier
|
113
|
+
(?!.*(;|\n\r|\n)) # abort if line has a ;
|
114
|
+
(?=\()
|
115
|
+
end: (?={)
|
116
|
+
patterns:
|
117
|
+
- include: "#statement-remainder"
|
118
|
+
- name: meta.definition.method.groovy
|
119
|
+
begin: |-
|
120
|
+
(?x)^\s*
|
121
|
+
((?:\b(def|public|private|protected|static|final|native|synchronized|abstract|threadsafe|transient)\b\s*)*) # modifier
|
122
|
+
(\b(void|boolean|byte|char|short|int|float|long|double|(\w+\.)*[A-Z]\w+)\b(<((?:\w+\.)*[A-Z]\w+)>|\[\s*\])?)\s* # type
|
123
|
+
(\w+)\s* # identifier
|
124
|
+
(?!.*(;|\n\r|\n)) # abort if line has a ;
|
125
|
+
(?=\()
|
126
|
+
beginCaptures:
|
127
|
+
"6":
|
128
|
+
name: storage.type.groovy
|
129
|
+
"8":
|
130
|
+
name: entity.name.function.groovy
|
131
|
+
"1":
|
132
|
+
name: storage.modifier.groovy
|
133
|
+
"4":
|
134
|
+
name: storage.type.groovy
|
135
|
+
end: (?={)
|
136
|
+
patterns:
|
137
|
+
- include: "#statement-remainder"
|
138
|
+
- name: constant.other.groovy
|
139
|
+
match: \b([A-Z][A-Z0-9_]+)\b
|
140
|
+
- name: comment.block.groovy
|
141
|
+
begin: /\*
|
142
|
+
end: \*/
|
143
|
+
- name: comment.line.double-slash.groovy
|
144
|
+
match: //.*$\n?
|
145
|
+
- include: "#all-types"
|
146
|
+
- name: storage.modifier.access-control.groovy
|
147
|
+
match: \b(def|private|protected|public)\b
|
148
|
+
- name: storage.modifier.groovy
|
149
|
+
match: \b(abstract|final|native|static|transient|synchronized|volatile|strictfp|extends|implements)\b
|
150
|
+
- name: storage.type.groovy
|
151
|
+
match: \b(class|interface)\b
|
152
|
+
- name: keyword.control.catch-exception.groovy
|
153
|
+
match: \b(try|catch|finally|throw)\b
|
154
|
+
- name: keyword.control.groovy
|
155
|
+
match: \b(return|break|case|continue|default|do|while|for|switch|if|else)\b
|
156
|
+
- name: meta.import.groovy
|
157
|
+
captures:
|
158
|
+
"1":
|
159
|
+
name: keyword.other.class-fns.groovy
|
160
|
+
"2":
|
161
|
+
name: entity.name.type.class.groovy
|
162
|
+
match: ^\s*(import)\s+([^ ;$]+);?
|
163
|
+
- name: meta.package.groovy
|
164
|
+
captures:
|
165
|
+
"1":
|
166
|
+
name: keyword.other.class-fns.groovy
|
167
|
+
"2":
|
168
|
+
name: entity.name.function.package.groovy
|
169
|
+
match: ^\s*(package)\s+([^ ;]+?);
|
170
|
+
- name: keyword.other.class-fns.groovy
|
171
|
+
match: \b(new|throws)\b
|
172
|
+
- name: keyword.operator.groovy
|
173
|
+
match: \b(instanceof)\b
|
174
|
+
- name: constant.language.groovy
|
175
|
+
match: \b(true|false|null)\b
|
176
|
+
- name: variable.language.groovy
|
177
|
+
match: \b(this|super)\b
|
178
|
+
- name: constant.numeric.groovy
|
179
|
+
match: \b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\.?[0-9]*)|(\.[0-9]+))((e|E)(\+|-)?[0-9]+)?)([LlFfUuDd]|UL|ul)?\b
|
180
|
+
- include: "#string-quoted-double"
|
181
|
+
- include: "#string-quoted-single"
|
182
|
+
- name: keyword.operator.comparison.groovy
|
183
|
+
match: (===|==|!=|<=|>=|<=>|<>|<|>|<<)
|
184
|
+
- name: keyword.operator.increment-decrement.groovy
|
185
|
+
match: (\-\-|\+\+)
|
186
|
+
- name: keyword.operator.arithmetic.groovy
|
187
|
+
match: (\-|\+|\*|\/|%)
|
188
|
+
- name: keyword.operator.logical.groovy
|
189
|
+
match: (!|&&|\|\|)
|
190
|
+
foldingStopMarker: ^\s*(\}|// \}\}\}$)
|
191
|
+
keyEquivalent: ^~G
|
data/syntax/gtd.syntax
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
---
|
2
|
+
name: GTD
|
3
|
+
fileTypes:
|
4
|
+
- gtd
|
5
|
+
scopeName: text.plain.gtd
|
6
|
+
uuid: A984336E-2C65-4152-8FC0-34D2E73721DA
|
7
|
+
patterns:
|
8
|
+
- name: markup.other.pagename
|
9
|
+
match: "[A-Z][a-z]+([A-Z][a-z]*)+"
|
10
|
+
- name: string.unquoted.gtd
|
11
|
+
match: ^-\s{2}\S+\s
|
12
|
+
- name: entity.name.tag.gtd
|
13
|
+
match: ^<-\s\S+\s
|
14
|
+
- name: constant.language.gtd
|
15
|
+
match: ^->\s\S+\s
|
16
|
+
- name: variable.language.gtd
|
17
|
+
match: ^\+\s{2}\S+\s
|
18
|
+
- name: comment.line.gtd
|
19
|
+
match: ^\^\s{2}\S+\s
|
20
|
+
- name: support.class.exception.gtd
|
21
|
+
match: ^\!\s{2}\S+\s
|
22
|
+
keyEquivalent: ^~G
|
@@ -0,0 +1,143 @@
|
|
1
|
+
---
|
2
|
+
name: GTDalt
|
3
|
+
fileTypes:
|
4
|
+
- gtd
|
5
|
+
- gtdlog
|
6
|
+
scopeName: text.gtdalt
|
7
|
+
repository:
|
8
|
+
title:
|
9
|
+
name: constant.other.title.gtdalt
|
10
|
+
match: \S+(?:\s+\S+)*?(?=\s*(?:\[\d+\]|(?:due|at|from):|$))
|
11
|
+
date:
|
12
|
+
captures:
|
13
|
+
"1":
|
14
|
+
name: keyword.operator.due.gtdalt
|
15
|
+
"2":
|
16
|
+
name: punctuation.separator.key-value.due.gtdalt
|
17
|
+
"3":
|
18
|
+
name: string.quoted.other.timestamp.due.gtdalt
|
19
|
+
"4":
|
20
|
+
name: punctuation.definition.due.gtdalt
|
21
|
+
"5":
|
22
|
+
name: punctuation.definition.due.gtdalt
|
23
|
+
match: ((?:due|at|from)(:))((\[)\d{4}-\d{2}-\d{2}(\]))
|
24
|
+
note:
|
25
|
+
name: support.other.note.gtdalt
|
26
|
+
captures:
|
27
|
+
"1":
|
28
|
+
name: punctuation.definition.note.gtdalt
|
29
|
+
"2":
|
30
|
+
name: punctuation.definition.note.gtdalt
|
31
|
+
match: (\[)\d+(\])
|
32
|
+
link:
|
33
|
+
captures:
|
34
|
+
"1":
|
35
|
+
name: punctuation.definition.link.gtdalt
|
36
|
+
"2":
|
37
|
+
name: markup.underline.link.gtdalt
|
38
|
+
"3":
|
39
|
+
name: punctuation.definition.link.gtdalt
|
40
|
+
match: (<)([^>]*)(>)
|
41
|
+
uuid: C36472BD-A8CD-4613-A595-CEFB052E6181
|
42
|
+
foldingStartMarker: ^\s*project
|
43
|
+
patterns:
|
44
|
+
- name: meta.project.begin.gtdalt
|
45
|
+
endCaptures:
|
46
|
+
"0":
|
47
|
+
name: meta.line.project.end.gtdalt
|
48
|
+
"1":
|
49
|
+
name: keyword.control.project.end.gtdalt
|
50
|
+
begin: ^\s*(project)\s+(.*)(\n)
|
51
|
+
beginCaptures:
|
52
|
+
"0":
|
53
|
+
name: meta.line.project.begin.gtdalt
|
54
|
+
"1":
|
55
|
+
name: keyword.control.project.begin.gtdalt
|
56
|
+
"2":
|
57
|
+
name: entity.name.section.project.title.gtdalt
|
58
|
+
"3":
|
59
|
+
name: meta.project.newline.gtdalt
|
60
|
+
end: ^\s*(end)\s*
|
61
|
+
patterns:
|
62
|
+
- include: $self
|
63
|
+
- name: meta.action.only-context.gtdalt
|
64
|
+
captures:
|
65
|
+
"1":
|
66
|
+
name: storage.type.context.action.gtdalt
|
67
|
+
"2":
|
68
|
+
name: punctuation.definition.context.action.gtdalt
|
69
|
+
match: ^\s*((@)\S++\n)
|
70
|
+
- name: meta.action.gtdalt
|
71
|
+
begin: ^\s*((@)\S++\s)
|
72
|
+
beginCaptures:
|
73
|
+
"1":
|
74
|
+
name: storage.type.context.action.gtdalt
|
75
|
+
"2":
|
76
|
+
name: punctuation.definition.context.action.gtdalt
|
77
|
+
end: \n|$
|
78
|
+
patterns:
|
79
|
+
- include: "#note"
|
80
|
+
- include: "#date"
|
81
|
+
- include: "#title"
|
82
|
+
- name: meta.action.completed.gtdalt
|
83
|
+
captures:
|
84
|
+
"6":
|
85
|
+
name: punctuation.definition.date.gtdalt
|
86
|
+
"0":
|
87
|
+
name: comment.line.number-sign.action.completed.gtdalt
|
88
|
+
"2":
|
89
|
+
name: punctuation.definition.completed.gtdalt
|
90
|
+
"3":
|
91
|
+
name: punctuation.definition.completed.gtdalt
|
92
|
+
"4":
|
93
|
+
name: string.quoted.other.timestamp.action.completed.gtdalt
|
94
|
+
"5":
|
95
|
+
name: punctuation.definition.date.gtdalt
|
96
|
+
match: ^((#)completed(:))((\[)\d{4}-\d{2}-\d{2}(\]))\s*(.*)
|
97
|
+
- name: meta.note.gtdalt
|
98
|
+
begin: ^((\[)\d+(\]))
|
99
|
+
beginCaptures:
|
100
|
+
"1":
|
101
|
+
name: support.other.note.gtdalt
|
102
|
+
"2":
|
103
|
+
name: punctuation.definition.note.note.gtdalt
|
104
|
+
"3":
|
105
|
+
name: punctuation.definition.note.note.gtdalt
|
106
|
+
end: \n|$
|
107
|
+
patterns:
|
108
|
+
- include: "#link"
|
109
|
+
- name: meta.action.archived.gtdalt
|
110
|
+
captures:
|
111
|
+
"6":
|
112
|
+
name: storage.type.context.action.archived.gtdalt
|
113
|
+
"7":
|
114
|
+
name: comment.line.slash.action.archived.gtdalt
|
115
|
+
"1":
|
116
|
+
name: punctuation.separator.archived.gtdalt
|
117
|
+
"2":
|
118
|
+
name: string.quoted.other.timestamp.action.archived.gtdalt
|
119
|
+
"3":
|
120
|
+
name: punctuation.separator.archived.gtdalt
|
121
|
+
"4":
|
122
|
+
name: support.other.project.action.archived.gtdalt
|
123
|
+
"5":
|
124
|
+
name: punctuation.separator.archived.gtdalt
|
125
|
+
match: ^(\/)(\d{4}-\d{2}-\d{2})(\/)([^\/]+)(\/)(@\S+)\s++(.*)$
|
126
|
+
- name: meta.project.archived.gtdalt
|
127
|
+
captures:
|
128
|
+
"1":
|
129
|
+
name: punctuation.separator.archived.gtdalt
|
130
|
+
"2":
|
131
|
+
name: string.quoted.other.timestamp.project.archived.gtdalt
|
132
|
+
"3":
|
133
|
+
name: punctuation.separator.archived.gtdalt
|
134
|
+
"4":
|
135
|
+
name: support.other.project.archived.gtdalt
|
136
|
+
match: ^(\/)(\d{4}-\d{2}-\d{2})(\/)([^\/]+)$
|
137
|
+
- name: comment.line.number-sign.generic.gtdalt
|
138
|
+
captures:
|
139
|
+
"1":
|
140
|
+
name: punctuation.definition.comment.gtdalt
|
141
|
+
match: ^(#)\s+.*$
|
142
|
+
foldingStopMarker: ^\s*end\s*$
|
143
|
+
keyEquivalent: ^~G
|
data/syntax/haml.syntax
ADDED
@@ -0,0 +1,88 @@
|
|
1
|
+
---
|
2
|
+
name: Haml
|
3
|
+
fileTypes:
|
4
|
+
- haml
|
5
|
+
- sass
|
6
|
+
scopeName: text.haml
|
7
|
+
repository:
|
8
|
+
continuation:
|
9
|
+
captures:
|
10
|
+
"1":
|
11
|
+
name: punctuation.separator.continuation.haml
|
12
|
+
match: (\|)\s*\n
|
13
|
+
rubyline:
|
14
|
+
name: meta.line.ruby.haml
|
15
|
+
endCaptures:
|
16
|
+
"1":
|
17
|
+
name: source.ruby.embedded.html
|
18
|
+
"2":
|
19
|
+
name: keyword.control.ruby.start-block
|
20
|
+
begin: =|-|~
|
21
|
+
contentName: source.ruby.embedded.haml
|
22
|
+
end: ((do|\{)( \|[^|]+\|)?)$|$|^(?!.*\|\s*$)
|
23
|
+
patterns:
|
24
|
+
- name: comment.line.number-sign.ruby
|
25
|
+
match: "#.*$"
|
26
|
+
comment: Hack to let ruby comments work in this context properly
|
27
|
+
- include: source.ruby.rails
|
28
|
+
- include: "#continuation"
|
29
|
+
uuid: 3D727049-DD05-45DF-92A5-D50EA36FD035
|
30
|
+
foldingStartMarker: ^\s*([-%#\:\.\w\=].*)\s$
|
31
|
+
patterns:
|
32
|
+
- name: meta.prolog.haml
|
33
|
+
captures:
|
34
|
+
"1":
|
35
|
+
name: punctuation.definition.prolog.haml
|
36
|
+
match: ^(!!!)($|\s.*)
|
37
|
+
- name: comment.line.slash.haml
|
38
|
+
captures:
|
39
|
+
"1":
|
40
|
+
name: punctuation.section.comment.haml
|
41
|
+
match: ^ *(/)\s*\S.*$\n?
|
42
|
+
- name: comment.block.haml
|
43
|
+
begin: ^( *)(/)\s*$
|
44
|
+
beginCaptures:
|
45
|
+
"2":
|
46
|
+
name: punctuation.section.comment.haml
|
47
|
+
end: ^(?!\1 )
|
48
|
+
patterns:
|
49
|
+
- include: text.haml
|
50
|
+
- captures:
|
51
|
+
"1":
|
52
|
+
name: meta.tag.haml
|
53
|
+
"2":
|
54
|
+
name: punctuation.definition.tag.haml
|
55
|
+
"3":
|
56
|
+
name: entity.name.tag.haml
|
57
|
+
begin: ^\s*(?:((%)([\w:]+))|(?=\.|#))
|
58
|
+
end: $|(?!\.|#|\{|\[|=|-|~|/)
|
59
|
+
patterns:
|
60
|
+
- name: entity.name.tag.class.haml
|
61
|
+
match: \.[\w-]+
|
62
|
+
- name: entity.name.tag.id.haml
|
63
|
+
match: "#[\\w-]+"
|
64
|
+
- name: meta.section.attributes.haml
|
65
|
+
begin: \{(?=.*\}|.*\|\s*$)
|
66
|
+
end: \}|$|^(?!.*\|\s*$)
|
67
|
+
patterns:
|
68
|
+
- include: source.ruby.rails
|
69
|
+
- include: "#continuation"
|
70
|
+
- name: meta.section.object.haml
|
71
|
+
begin: \[(?=.*\]|.*\|\s*$)
|
72
|
+
end: \]|$|^(?!.*\|\s*$)
|
73
|
+
patterns:
|
74
|
+
- include: source.ruby.rails
|
75
|
+
- include: "#continuation"
|
76
|
+
- include: "#rubyline"
|
77
|
+
- name: punctuation.terminator.tag.haml
|
78
|
+
match: /
|
79
|
+
- captures:
|
80
|
+
"1":
|
81
|
+
name: meta.escape.haml
|
82
|
+
match: ^\s*(\\.)
|
83
|
+
- begin: ^\s*(?==|-|~)
|
84
|
+
end: $
|
85
|
+
patterns:
|
86
|
+
- include: "#rubyline"
|
87
|
+
foldingStopMarker: ^\s*$
|
88
|
+
keyEquivalent: ^~H
|
@@ -0,0 +1,88 @@
|
|
1
|
+
---
|
2
|
+
name: Haskell
|
3
|
+
fileTypes:
|
4
|
+
- hs
|
5
|
+
scopeName: source.haskell
|
6
|
+
uuid: 5C034675-1F6D-497E-8073-369D37E2FD7D
|
7
|
+
patterns:
|
8
|
+
- name: entity.name.function.infix.haskell
|
9
|
+
captures:
|
10
|
+
"1":
|
11
|
+
name: punctuation.definition.entity.haskell
|
12
|
+
"2":
|
13
|
+
name: punctuation.definition.entity.haskell
|
14
|
+
match: (`).*(`)
|
15
|
+
- name: keyword.other.haskell
|
16
|
+
match: \b(otherwise|module|where|import|data|type|case|of|let|in|instance|deriving|class|newtype|default|hiding|as)\b
|
17
|
+
- name: punctuation.separator.equal-sign.haskell
|
18
|
+
match: (?<![<=>/])=(?![=])
|
19
|
+
- name: punctuation.separator.pipe-sign.haskell
|
20
|
+
match: (?<!\|)\|(?!(\||[\(\),_a-zA-Z0-9\s]*<-))
|
21
|
+
- name: keyword.operator.haskell
|
22
|
+
match: \b(infixl|infixr)\b
|
23
|
+
- name: keyword.control.haskell
|
24
|
+
match: \b(do|if|then|else)\b
|
25
|
+
- name: meta.preprocessor.haskell
|
26
|
+
captures:
|
27
|
+
"1":
|
28
|
+
name: punctuation.definition.preprocessor.haskell
|
29
|
+
match: ^\s*(#)\s*\w+
|
30
|
+
- name: string.quoted.double.haskell
|
31
|
+
endCaptures:
|
32
|
+
"0":
|
33
|
+
name: punctuation.definition.string.end.haskell
|
34
|
+
begin: "\""
|
35
|
+
beginCaptures:
|
36
|
+
"0":
|
37
|
+
name: punctuation.definition.string.begin.haskell
|
38
|
+
end: "\""
|
39
|
+
patterns:
|
40
|
+
- name: constant.character.escape.haskell
|
41
|
+
match: \\.
|
42
|
+
- name: string.quoted.single.haskell
|
43
|
+
endCaptures:
|
44
|
+
"0":
|
45
|
+
name: punctuation.definition.string.end.haskell
|
46
|
+
begin: "[^\\w']'"
|
47
|
+
beginCaptures:
|
48
|
+
"0":
|
49
|
+
name: punctuation.definition.string.begin.haskell
|
50
|
+
end: "'"
|
51
|
+
patterns:
|
52
|
+
- name: constant.character.escape.haskell
|
53
|
+
match: \\.
|
54
|
+
- name: meta.function.type-declaration.haskell
|
55
|
+
begin: ^\s*([a-z_][a-zA-Z0-9_]*|\([|!%$+\-.,=</>]+\))\s*(::)
|
56
|
+
beginCaptures:
|
57
|
+
"1":
|
58
|
+
name: entity.name.function.haskell
|
59
|
+
"2":
|
60
|
+
name: punctuation.separator.double-colon.haskell
|
61
|
+
end: $\n?
|
62
|
+
patterns:
|
63
|
+
- name: punctuation.separator.arrow.haskell
|
64
|
+
match: ->
|
65
|
+
- name: punctuation.separator.big-arrow.haskell
|
66
|
+
match: =>
|
67
|
+
- name: variable.other.generic-type.haskell
|
68
|
+
match: \b[a-z][a-zA-Z0-9,()_]*\b
|
69
|
+
- name: constant.other.haskell
|
70
|
+
match: \b[A-Z][a-zA-Z0-9,()_]*\b
|
71
|
+
- name: constant.other.haskell
|
72
|
+
match: \b[A-Z]\w*\b
|
73
|
+
- name: comment.line.double-dash.haskell
|
74
|
+
captures:
|
75
|
+
"1":
|
76
|
+
name: punctuation.definition.comment.haskell
|
77
|
+
match: (--).*$\n?
|
78
|
+
- name: comment.block.haskell
|
79
|
+
captures:
|
80
|
+
"0":
|
81
|
+
name: punctuation.definition.comment.haskell
|
82
|
+
begin: "{-"
|
83
|
+
end: -}
|
84
|
+
- name: entity.name.function.builtin.prelude.haskell
|
85
|
+
match: \b(abs|acos|acosh|all|and|any|appendFile|applyM|asTypeOf|asin|asinh|atan|atan2|atanh|break|catch|ceiling|compare|concat|concatMap|const|cos|cosh|curry|cycle|decodeFloat|div|divMod|drop|dropWhile|elem|encodeFloat|enumFrom|enumFromThen|enumFromThenTo|enumFromTo|error|even|exp|exponent|fail|filter|flip|floatDigits|floatRadix|floatRange|floor|fmap|foldl|foldl1|foldr|foldr1|fromEnum|fromInteger|fromIntegral|fromRational|fst|gcd|getChar|getContents|getLine|head|id|init|interact|ioError|isDenormalized|isIEEE|isInfinite|isNaN|isNegativeZero|iterate|last|lcm|length|lex|lines|log|logBase|lookup|map|mapM|mapM_|max|maxBound|maximum|maybe|min|minBound|minimum|mod|negate|not|notElem|null|odd|or|otherwise|pi|pred|print|product|properFraction|putChar|putStr|putStrLn|quot|quotRem|read|readFile|readIO|readList|readLn|readParen|reads|readsPrec|realToFrac|recip|rem|repeat|replicate|return|reverse|round|scaleFloat|scanl|scanl1|scanr|scanr1|seq|sequence|sequence_|show|showChar|showList|showParen|showString|shows|showsPrec|significand|signum|sin|sinh|snd|span|splitAt|sqrt|subtract|succ|sum|tail|take|takeWhile|tan|tanh|toEnum|toInteger|toRational|truncate|uncurry|undefined|unlines|until|unwords|unzip|unzip3|userError|words|writeFile|zip|zip3|zipWith|zipWith3)\b
|
86
|
+
- name: entity.name.function.infix.haskell
|
87
|
+
match: \([|!%$+\-.,=</>]+\)
|
88
|
+
keyEquivalent: ^~H
|