├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── _config.yml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── main └── resources ├── META-INF ├── MANIFEST.MF └── jb │ └── $$size$$ ├── com ├── intellij │ ├── dvcs │ │ └── ui │ │ │ └── DvcsBundle.properties │ ├── json │ │ └── JsonBundle.properties │ ├── refactoring │ │ └── RefactorJBundle.properties │ ├── spellchecker │ │ └── util │ │ │ └── SpellCheckerBundle.properties │ ├── tasks │ │ └── TaskBundle.properties │ ├── util │ │ └── UltimateFeaturesBundle.properties │ └── webcore │ │ └── WebCoreBundle.properties └── siyeh │ ├── InspectionGadgetsBundle.properties │ └── IntentionPowerPackBundle.properties ├── fileTemplates_cn ├── Singleton.java.ft ├── code │ ├── Catch Statement Body.java.ft │ ├── Catch Statement Body.java.html │ ├── I18nized Concatenation.java.ft │ ├── I18nized Concatenation.java.html │ ├── I18nized Expression.java.ft │ ├── I18nized Expression.java.html │ ├── I18nized JSP Expression.jsp.ft │ ├── I18nized JSP Expression.jsp.html │ ├── Implemented Method Body.java.ft │ ├── Implemented Method Body.java.html │ ├── New Method Body.java.ft │ ├── New Method Body.java.html │ ├── Overridden Method Body.java.ft │ └── Overridden Method Body.java.html ├── default.html ├── includes │ ├── File Header.java.ft │ ├── File Header.java.html │ └── default.html └── internal │ ├── AnnotationType.java.ft │ ├── AnnotationType.java.html │ ├── Class.java.ft │ ├── Class.java.html │ ├── Enum.java.ft │ ├── Enum.java.html │ ├── HTML File.html.ft │ ├── HTML4 File.html.ft │ ├── Interface.java.ft │ ├── Interface.java.html │ ├── XHTML File.xhtml.ft │ ├── module-info.java.ft │ ├── module-info.java.html │ ├── package-info.java.ft │ └── package-info.java.html ├── i18n └── ExternalSystemBundle.properties ├── inspectionDescriptions ├── AbsoluteAlignmentInUserInterface.html ├── AbstractClassExtendsConcreteClass.html ├── AbstractClassNamingConvention.html ├── AbstractClassNeverImplemented.html ├── AbstractClassWithOnlyOneDirectInheritor.html ├── AbstractClassWithoutAbstractMethods.html ├── AbstractMethodCallInConstructor.html ├── AbstractMethodOverridesAbstractMethod.html ├── AbstractMethodOverridesConcreteMethod.html ├── AbstractMethodWithMissingImplementations.html ├── AccessStaticViaInstance.html ├── AccessToNonThreadSafeStaticFieldFromInstance.html ├── AccessToStaticFieldLockedOnInstance.html ├── AlphaUnsortedPropertiesFile.html ├── AmbiguousFieldAccess.html ├── AmbiguousMethodCall.html ├── Annotation.html ├── AnnotationClass.html ├── AnnotationNamingConvention.html ├── Annotator.html ├── Anonymous2MethodRef.html ├── AnonymousClassComplexity.html ├── AnonymousClassMethodCount.html ├── AnonymousClassVariableHidesContainingMethodVariable.html ├── AnonymousGroup.html ├── AnonymousHasLambdaAlternative.html ├── AnonymousInnerClass.html ├── AnonymousInnerClassMayBeStatic.html ├── ArrayCreationWithoutNewKeyword.html ├── ArrayEquality.html ├── ArrayEquals.html ├── ArrayHashCode.html ├── ArrayLengthInLoopCondition.html ├── ArrayObjectsEquals.html ├── ArraysAsListWithZeroOrOneArgument.html ├── AssertAsName.html ├── AssertEqualsBetweenInconvertibleTypes.html ├── AssertEqualsCalledOnArray.html ├── AssertEqualsMayBeAssertSame.html ├── AssertMessageNotString.html ├── AssertStatement.html ├── AssertWithSideEffects.html ├── AssertionCanBeIf.html ├── AssertsWithoutMessages.html ├── AssignmentToCatchBlockParameter.html ├── AssignmentToCollectionFieldFromParameter.html ├── AssignmentToDateFieldFromParameter.html ├── AssignmentToForLoopParameter.html ├── AssignmentToLambdaParameter.html ├── AssignmentToMethodParameter.html ├── AssignmentToNull.html ├── AssignmentToStaticFieldFromInstanceMethod.html ├── AssignmentToSuperclassField.html ├── AssignmentUsedAsCondition.html ├── AtomicFieldUpdaterIssues.html ├── AtomicFieldUpdaterNotStaticFinal.html ├── AutoBoxing.html ├── AutoCloseableResource.html ├── AutoUnboxing.html ├── AwaitNotInLoop.html ├── AwaitWithoutCorrespondingSignal.html ├── BadExceptionCaught.html ├── BadExceptionDeclared.html ├── BadExceptionThrown.html ├── BadOddness.html ├── BeforeClassOrAfterClassIsPublicStaticVoidNoArg.html ├── BeforeOrAfterIsPublicVoidNoArg.html ├── BigDecimalEquals.html ├── BigDecimalLegacyMethod.html ├── BigDecimalMethodWithoutRoundingCalled.html ├── BlockMarkerComments.html ├── BooleanConstructor.html ├── BooleanExpressionMayBeConditional.html ├── BooleanMethodIsAlwaysInverted.html ├── BooleanMethodNameMustStartWithQuestion.html ├── BooleanParameter.html ├── BooleanVariableAlwaysNegated.html ├── BoxingBoxedValue.html ├── BreakStatement.html ├── BreakStatementWithLabel.html ├── BusyWait.html ├── CStyleArrayDeclaration.html ├── CachedNumberConstructorCall.html ├── CallToNativeMethodWhileLocked.html ├── CallToSimpleGetterInClass.html ├── CallToSimpleSetterInClass.html ├── CallToStringConcatCanBeReplacedByOperator.html ├── CallToSuspiciousStringMethod.html ├── CanBeFinal.html ├── CanBeStatic.html ├── CastConflictsWithInstanceof.html ├── CastThatLosesPrecision.html ├── CastToConcreteClass.html ├── CastToIncompatibleInterface.html ├── CaughtExceptionImmediatelyRethrown.html ├── ChainedEquality.html ├── ChainedMethodCall.html ├── ChannelResource.html ├── CharUsedInArithmeticContext.html ├── CharacterComparison.html ├── CheckDtdRefs.html ├── CheckEmptyScriptTag.html ├── CheckForOutOfMemoryOnLargeArrayAllocation.html ├── CheckJsfComponentUnderViewTag.html ├── CheckTagEmptyBody.html ├── CheckValidXmlInScriptTagBody.html ├── CheckXmlFileWithXercesValidator.html ├── CheckedExceptionClass.html ├── ClassComplexity.html ├── ClassCoupling.html ├── ClassEscapesItsScope.html ├── ClassHasNoToStringMethod.html ├── ClassIndependentOfModule.html ├── ClassInheritanceDepth.html ├── ClassInitializer.html ├── ClassInitializerMayBeStatic.html ├── ClassLoaderInstantiation.html ├── ClassMayBeInterface.html ├── ClassNameDiffersFromFileName.html ├── ClassNamePrefixedWithPackageName.html ├── ClassNameSameAsAncestorName.html ├── ClassNamingConvention.html ├── ClassNestingDepth.html ├── ClassNewInstance.html ├── ClassOnlyUsedInOneModule.html ├── ClassOnlyUsedInOnePackage.html ├── ClassReferencesSubclass.html ├── ClassUnconnectedToPackage.html ├── ClassWithMultipleLoggers.html ├── ClassWithOnlyPrivateConstructors.html ├── ClassWithTooManyDependencies.html ├── ClassWithTooManyDependents.html ├── ClassWithTooManyTransitiveDependencies.html ├── ClassWithTooManyTransitiveDependents.html ├── ClassWithoutConstructor.html ├── ClassWithoutLogger.html ├── ClassWithoutNoArgConstructor.html ├── CloneCallsConstructors.html ├── CloneDeclaresCloneNotSupported.html ├── CloneInNonCloneableClass.html ├── CloneReturnsClassType.html ├── CloneableClassInSecureContext.html ├── CloneableImplementsClone.html ├── CodeBlock2Expr.html ├── CollectionAddAllCanBeReplacedWithConstructor.html ├── CollectionAddedToSelf.html ├── CollectionContainsUrl.html ├── CollectionsFieldAccessReplaceableByMethodCall.html ├── CollectionsMustHaveInitialCapacity.html ├── ComparableImplementedButEqualsNotOverridden.html ├── ComparatorCombinators.html ├── ComparatorMethodParameterNotUsed.html ├── ComparatorNotSerializable.html ├── ComparatorResultComparison.html ├── CompareToUsesNonFinalVariable.html ├── ComparisonOfShortAndChar.html ├── ComparisonToNaN.html ├── ConditionSignal.html ├── ConditionalCanBePushedInsideExpression.html ├── ConditionalExpression.html ├── ConditionalExpressionWithIdenticalBranches.html ├── ConfusingElse.html ├── ConfusingFloatingPointLiteral.html ├── ConfusingMainMethod.html ├── ConfusingOctalEscape.html ├── ConnectionResource.html ├── ConstantAssertCondition.html ├── ConstantConditionalExpression.html ├── ConstantConditions.html ├── ConstantDeclaredInAbstractClass.html ├── ConstantDeclaredInInterface.html ├── ConstantIfStatement.html ├── ConstantJUnitAssertArgument.html ├── ConstantMathCall.html ├── ConstantNamingConvention.html ├── ConstantOnLHSOfComparison.html ├── ConstantOnRHSOfComparison.html ├── ConstantStringIntern.html ├── ConstantValueVariableUse.html ├── ConstructorCount.html ├── ContinueOrBreakFromFinallyBlock.html ├── ContinueStatement.html ├── ContinueStatementWithLabel.html ├── Contract.html ├── ControlFlowStatementWithoutBraces.html ├── Convert2Diamond.html ├── Convert2Lambda.html ├── Convert2MethodRef.html ├── Convert2streamapi.html ├── CovariantEquals.html ├── CustomClassloader.html ├── CustomSecurityManager.html ├── CyclicClassDependency.html ├── CyclicPackageDependency.html ├── CyclomaticComplexity.html ├── DanglingJavadoc.html ├── DateToString.html ├── DeclareCollectionAsInterface.html ├── DefaultAnnotationParam.html ├── DefaultFileTemplate.html ├── DefaultNotLastCaseInSwitch.html ├── Dependency.html ├── DeprecatedClassUsageInspection.html ├── DeprecatedIsStillUsed.html ├── Deprecation.html ├── DeserializableClassInSecureContext.html ├── DesignForExtension.html ├── DiamondCanBeReplacedWithExplicitTypeArguments.html ├── DisjointPackage.html ├── DivideByZero.html ├── DollarSignInName.html ├── DomModelInspection.html ├── DoubleBraceInitialization.html ├── DoubleCheckedLocking.html ├── DoubleLiteralMayBeFloatLiteral.html ├── DoubleNegation.html ├── DriverManagerGetConnection.html ├── DuplicateAlternationBranch.html ├── DuplicateBooleanBranch.html ├── DuplicateCondition.html ├── DuplicatePropertyInspection.html ├── DuplicateStringLiteralInspection.html ├── DuplicateThrows.html ├── Duplicates.html ├── DynamicRegexReplaceableByCompiledPattern.html ├── EjbDomInspection.html ├── EmptyAlternationBranch.html ├── EmptyCatchBlock.html ├── EmptyClass.html ├── EmptyDirectory.html ├── EmptyFinallyBlock.html ├── EmptyInitializer.html ├── EmptyMethod.html ├── EmptyStatementBody.html ├── EmptySynchronizedStatement.html ├── EmptyTryBlock.html ├── EnumAsName.html ├── EnumClass.html ├── EnumSwitchStatementWhichMissesCases.html ├── EnumeratedClassNamingConvention.html ├── EnumeratedConstantNamingConvention.html ├── EnumerationCanBeIteration.html ├── EqualityOperatorComparesObjects.html ├── EqualsAndHashcode.html ├── EqualsBetweenInconvertibleTypes.html ├── EqualsCalledOnEnumConstant.html ├── EqualsHashCodeCalledOnUrl.html ├── EqualsOnSuspiciousObject.html ├── EqualsReplaceableByObjectsCall.html ├── EqualsUsesNonFinalVariable.html ├── EqualsWhichDoesntCheckParameterClass.html ├── EqualsWithItself.html ├── ErrorRethrown.html ├── EscapedMetaCharacter.html ├── ExceptionFromCatchWhichDoesntWrap.html ├── ExceptionNameDoesntEndWithException.html ├── ExcessiveLambdaUsage.html ├── ExpectedExceptionNeverThrown.html ├── ExtendsAnnotation.html ├── ExtendsConcreteCollection.html ├── ExtendsObject.html ├── ExtendsThread.html ├── ExtendsThrowable.html ├── ExtendsUtilityClass.html ├── ExternalizableWithSerializationMethods.html ├── ExternalizableWithoutPublicNoArgConstructor.html ├── FallthruInSwitchStatement.html ├── FeatureEnvy.html ├── FieldAccessNotGuarded.html ├── FieldAccessedSynchronizedAndUnsynchronized.html ├── FieldCanBeLocal.html ├── FieldCanBeMovedToSubclass.html ├── FieldCount.html ├── FieldHasSetterButNoGetter.html ├── FieldHidesSuperclassField.html ├── FieldMayBeFinal.html ├── FieldMayBeStatic.html ├── FieldNotUsedInToString.html ├── FinalClass.html ├── FinalMethod.html ├── FinalMethodInFinalClass.html ├── FinalPrivateMethod.html ├── FinalStaticMethod.html ├── Finalize.html ├── FinalizeNotProtected.html ├── FinallyBlockCannotCompleteNormally.html ├── FloatingPointEquality.html ├── ForCanBeForeach.html ├── ForLoopReplaceableByWhile.html ├── ForLoopThatDoesntUseLoopVariable.html ├── ForLoopWithMissingComponent.html ├── ForeachStatement.html ├── FrequentlyUsedInheritorInspection.html ├── Guava.html ├── HTML.html ├── HardCodedStringLiteral.html ├── HardcodedFileSeparators.html ├── HardcodedLineSeparators.html ├── HashCodeUsesNonFinalVariable.html ├── HibernateResource.html ├── HtmlExtraClosingTag.html ├── HtmlMissingClosingTag.html ├── HtmlTagCanBeJavadocTag.html ├── HtmlUnknownAnchorTarget.html ├── HtmlUnknownAttribute.html ├── HtmlUnknownBooleanAttribute.html ├── HtmlUnknownTag.html ├── HtmlUnknownTarget.html ├── IOResource.html ├── IfCanBeAssertion.html ├── IfCanBeSwitch.html ├── IfMayBeConditional.html ├── IfStatementWithIdenticalBranches.html ├── IfStatementWithTooManyBranches.html ├── IgnoreResultOfCall.html ├── IgnoredJUnitTest.html ├── ImplicitArrayToString.html ├── ImplicitCallToSuper.html ├── ImplicitDefaultCharsetUsage.html ├── ImplicitNumericConversion.html ├── ImplicitSubclassInspection.html ├── IncompatibleMask.html ├── IncompleteProperty.html ├── InconsistentLanguageLevel.html ├── InconsistentLineSeparators.html ├── InconsistentResourceBundle.html ├── IncrementDecrementUsedAsExpression.html ├── IndexOfReplaceableByContains.html ├── InfiniteLoopStatement.html ├── InfiniteRecursion.html ├── InnerClassMayBeStatic.html ├── InnerClassOnInterface.html ├── InnerClassReferencedViaSubclass.html ├── InnerClassVariableHidesOuterClassVariable.html ├── InstanceGuardedByStatic.html ├── InstanceMethodNamingConvention.html ├── InstanceVariableInitialization.html ├── InstanceVariableNamingConvention.html ├── InstanceVariableOfConcreteClass.html ├── InstanceVariableUninitializedUse.html ├── InstanceofCatchParameter.html ├── InstanceofChain.html ├── InstanceofIncompatibleInterface.html ├── InstanceofInterfaces.html ├── InstanceofThis.html ├── InstantiatingObjectToGetClassObject.html ├── InstantiationOfUtilityClass.html ├── IntLiteralMayBeLongLiteral.html ├── IntegerDivisionInFloatingPointContext.html ├── IntegerMultiplicationImplicitCastToLong.html ├── InterfaceMayBeAnnotatedFunctional.html ├── InterfaceMethodClashesWithObject.html ├── InterfaceNamingConvention.html ├── InterfaceNeverImplemented.html ├── InterfaceWithOnlyOneDirectInheritor.html ├── InvalidComparatorMethodReference.html ├── IteratorHasNextCallsIteratorNext.html ├── IteratorNextDoesNotThrowNoSuchElementException.html ├── JDBCExecuteWithNonConstantString.html ├── JDBCPrepareStatementWithNonConstantString.html ├── JDBCResource.html ├── JNDIResource.html ├── JUnit3MethodNamingConvention.html ├── JUnit3StyleTestMethodInJUnit4Class.html ├── JUnit4AnnotatedMethodInJUnit3TestCase.html ├── JUnit4MethodNamingConvention.html ├── JUnit5AssertionsConverter.html ├── JUnit5Converter.html ├── JUnit5Platform.html ├── JUnitAbstractTestClassNamingConvention.html ├── JUnitDatapoint.html ├── JUnitRule.html ├── JUnitTestClassNamingConvention.html ├── Java8ArraySetAll.html ├── Java8CollectionRemoveIf.html ├── Java8ListSort.html ├── Java8MapApi.html ├── Java8MapForEach.html ├── Java9CollectionFactory.html ├── Java9ModuleExportsPackageToItself.html ├── Java9RedundantRequiresStatement.html ├── Java9ReflectionClassVisibility.html ├── JavaDoc.html ├── JavaLangImport.html ├── JavaLangInvokeHandleSignature.html ├── JavaReflectionInvocation.html ├── JavaReflectionMemberAccess.html ├── JavaRequiresAutoModule.html ├── JavacQuirks.html ├── JavadocHtmlLint.html ├── JavadocReference.html ├── JsonDuplicatePropertyKeys.html ├── JsonStandardCompliance.html ├── KeySetIterationMayUseEntrySet.html ├── LabeledStatement.html ├── LambdaBodyCanBeCodeBlock.html ├── LambdaCanBeMethodCall.html ├── LambdaCanBeReplacedWithAnonymous.html ├── LambdaParameterHidingMemberVariable.html ├── LambdaParameterNamingConvention.html ├── LambdaParameterTypeCanBeSpecified.html ├── LambdaUnfriendlyMethodOverload.html ├── LawOfDemeter.html ├── LengthOneStringInIndexOf.html ├── LengthOneStringsInConcatenation.html ├── LimitedScopeInnerClass.html ├── ListIndexOfReplaceableByContains.html ├── ListenerMayUseAdapter.html ├── LiteralAsArgToStringEquals.html ├── LoadLibraryWithNonConstantString.html ├── LocalCanBeFinal.html ├── LocalVariableHidingMemberVariable.html ├── LocalVariableNamingConvention.html ├── LocalVariableOfConcreteClass.html ├── Local_CustomHtmlAttributes.html ├── Local_CustomHtmlTags.html ├── Local_NotRequiredHtmlAttributes.html ├── LogStatementGuardedByLogCondition.html ├── LoggerInitializedWithForeignClass.html ├── LoggingConditionDisagreesWithLogStatement.html ├── LongLine.html ├── LongLiteralsEndingWithLowercaseL.html ├── LoopConditionNotUpdatedInsideLoop.html ├── LoopStatementsThatDontLoop.html ├── LoopWithImplicitTerminationCondition.html ├── LossyEncoding.html ├── MagicCharacter.html ├── MagicConstant.html ├── MagicNumber.html ├── MalformedFormatString.html ├── MalformedRegex.html ├── MalformedSetUpTearDown.html ├── MalformedXPath.html ├── ManualArrayCopy.html ├── ManualArrayToCollectionCopy.html ├── MapReplaceableByEnumMap.html ├── MarkerInterface.html ├── MathRandomCastToInt.html ├── MetaAnnotationWithoutRuntimeRetention.html ├── MethodCallInLoopCondition.html ├── MethodCanBeVariableArityMethod.html ├── MethodCount.html ├── MethodCoupling.html ├── MethodMayBeStatic.html ├── MethodMayBeSynchronized.html ├── MethodNameSameAsClassName.html ├── MethodNameSameAsParentName.html ├── MethodOnlyUsedFromInnerClass.html ├── MethodOverloadsParentMethod.html ├── MethodOverridesInaccessibleMethodOfSuper.html ├── MethodOverridesStaticMethod.html ├── MethodRefCanBeReplacedWithLambda.html ├── MethodReturnAlwaysConstant.html ├── MethodReturnOfConcreteClass.html ├── MethodWithMultipleLoops.html ├── MigrateAssertToMatcherAssert.html ├── MimeType.html ├── MismatchedArrayReadWrite.html ├── MismatchedCollectionQueryUpdate.html ├── MismatchedStringBuilderQueryUpdate.html ├── MisorderedAssertEqualsParameters.html ├── MissingDeprecatedAnnotation.html ├── MissingFinalNewline.html ├── MissingOverrideAnnotation.html ├── MissingPackageInfo.html ├── MissortedModifiers.html ├── MisspelledEquals.html ├── MisspelledHeader.html ├── MisspelledMethodName.html ├── ModuleWithTooFewClasses.html ├── ModuleWithTooManyClasses.html ├── MoveFieldAssignmentToInitializer.html ├── MultiCatchCanBeSplit.html ├── MultipleDeclaration.html ├── MultipleExceptionsDeclaredOnTestMethod.html ├── MultipleReturnPointsPerMethod.html ├── MultipleTopLevelClassesInFile.html ├── MultipleTypedDeclaration.html ├── MultiplyOrDivideByPowerOfTwo.html ├── NakedNotify.html ├── NativeMethodNamingConvention.html ├── NativeMethods.html ├── NegatedConditional.html ├── NegatedConditionalExpression.html ├── NegatedEqualityExpression.html ├── NegatedIfElse.html ├── NegativelyNamedBooleanVariable.html ├── NestedAssignment.html ├── NestedConditionalExpression.html ├── NestedMethodCall.html ├── NestedSwitchStatement.html ├── NestedSynchronizedStatement.html ├── NestedTryStatement.html ├── NestingDepth.html ├── NewExceptionWithoutArguments.html ├── NewStringBufferWithCharArgument.html ├── NoExplicitFinalizeCalls.html ├── NonAsciiCharacters.html ├── NonAtomicOperationOnVolatileField.html ├── NonBooleanMethodNameMayNotStartWithQuestion.html ├── NonCommentSourceStatements.html ├── NonExceptionNameEndsWithException.html ├── NonFinalClone.html ├── NonFinalFieldInEnum.html ├── NonFinalFieldInImmutable.html ├── NonFinalFieldOfException.html ├── NonFinalGuard.html ├── NonFinalStaticVariableUsedInClassInitialization.html ├── NonFinalUtilityClass.html ├── NonProtectedConstructorInAbstractClass.html ├── NonPublicClone.html ├── NonReproducibleMathCall.html ├── NonSerializableFieldInSerializableClass.html ├── NonSerializableObjectBoundToHttpSession.html ├── NonSerializableObjectPassedToObjectStream.html ├── NonSerializableWithSerialVersionUIDField.html ├── NonSerializableWithSerializationMethods.html ├── NonShortCircuitBoolean.html ├── NonStaticFinalLogger.html ├── NonStaticInnerClassInSecureContext.html ├── NonSynchronizedMethodOverridesSynchronizedMethod.html ├── NonThreadSafeLazyInitialization.html ├── NoopMethodInAbstractClass.html ├── NotifyCalledOnCondition.html ├── NotifyWithoutCorrespondingWait.html ├── NullArgumentToVariableArgMethod.html ├── NullThrown.html ├── NullableProblems.html ├── NumberEquality.html ├── NumericOverflow.html ├── NumericToString.html ├── ObjectAllocationInLoop.html ├── ObjectEquality.html ├── ObjectEqualsNull.html ├── ObjectInstantiationInEqualsHashCode.html ├── ObjectNotify.html ├── ObjectToString.html ├── ObsoleteCollection.html ├── ObviousNullCheck.html ├── OctalAndDecimalIntegersMixed.html ├── OctalEscape.html ├── OctalLiteral.html ├── OnDemandImport.html ├── OptionalAssignedToNull.html ├── OptionalContainsCollection.html ├── OptionalIsPresent.html ├── OptionalUsedAsFieldOrParameterType.html ├── OverloadedMethodsWithSameNumberOfParameters.html ├── OverloadedVarargsMethod.html ├── OverlyComplexArithmeticExpression.html ├── OverlyComplexBooleanExpression.html ├── OverlyLargePrimitiveArrayInitializer.html ├── OverlyLongLambda.html ├── OverlyStrongTypeCast.html ├── OverridableMethodCallDuringObjectConstruction.html ├── OverriddenMethodCallDuringObjectConstruction.html ├── PackageDotHtmlMayBePackageInfo.html ├── PackageInMultipleModules.html ├── PackageInfoWithoutPackage.html ├── PackageNamingConvention.html ├── PackageVisibleField.html ├── PackageVisibleInnerClass.html ├── PackageWithTooFewClasses.html ├── PackageWithTooManyClasses.html ├── ParameterCanBeLocal.html ├── ParameterHidingMemberVariable.html ├── ParameterNameDiffersFromOverriddenParameter.html ├── ParameterNamingConvention.html ├── ParameterOfConcreteClass.html ├── ParameterTypePreventsOverriding.html ├── ParameterizedParametersStaticCollection.html ├── ParametersPerConstructor.html ├── ParametersPerMethod.html ├── PlaceholderCountMatchesArgumentCount.html ├── PointlessArithmeticExpression.html ├── PointlessBitwiseExpression.html ├── PointlessBooleanExpression.html ├── PointlessIndexOfComparison.html ├── PointlessNullCheck.html ├── PrimitiveArrayArgumentToVariableArgMethod.html ├── PrivateMemberAccessBetweenOuterAndInnerClass.html ├── ProblematicVarargsMethodOverride.html ├── ProblematicWhitespace.html ├── PropertyValueSetToItself.html ├── ProtectedField.html ├── ProtectedInnerClass.html ├── ProtectedMemberInFinalClass.html ├── PublicConstructor.html ├── PublicConstructorInNonPublicClass.html ├── PublicField.html ├── PublicFieldAccessedInSynchronizedContext.html ├── PublicInnerClass.html ├── PublicMethodNotExposedInInterface.html ├── PublicMethodWithoutLogging.html ├── PublicStaticArrayField.html ├── PublicStaticCollectionField.html ├── QuestionableName.html ├── RandomDoubleForRandomInteger.html ├── RawTypeCanBeGeneric.html ├── RawUseOfParameterizedType.html ├── ReDoS.html ├── ReadObjectAndWriteObjectPrivate.html ├── ReadObjectInitialization.html ├── ReadResolveAndWriteReplaceProtected.html ├── RecordStoreResource.html ├── RedundantArrayCreation.html ├── RedundantCast.html ├── RedundantFieldInitialization.html ├── RedundantImplements.html ├── RedundantLambdaParameterType.html ├── RedundantMethodOverride.html ├── RedundantStreamOptionalCall.html ├── RedundantStringFormatCall.html ├── RedundantSuppression.html ├── RedundantThrows.html ├── RedundantThrowsDeclaration.html ├── RedundantTypeArguments.html ├── RedundantUncheckedSuppress.html ├── ReflectionForUnavailableAnnotation.html ├── RefusedBequest.html ├── RepeatedSpace.html ├── ReplaceAllDot.html ├── ReplaceAssignmentWithOperatorAssignment.html ├── ReplaceInefficientStreamCount.html ├── RequiredAttributes.html ├── ResultOfObjectAllocationIgnored.html ├── ResultSetIndexZero.html ├── ReturnFromFinallyBlock.html ├── ReturnNull.html ├── ReturnOfCollectionField.html ├── ReturnOfDateField.html ├── ReturnOfInnerClass.html ├── ReturnSeparatedFromComputation.html ├── ReturnThis.html ├── ReuseOfLocalVariable.html ├── RuntimeExec.html ├── RuntimeExecWithNonConstantString.html ├── SSBasedInspection.html ├── SafeLock.html ├── SafeVarargsDetector.html ├── SamePackageImport.html ├── SameParameterValue.html ├── SameReturnValue.html ├── SerialPersistentFieldsWithWrongSignature.html ├── SerialVersionUIDNotStaticFinal.html ├── SerializableClassInSecureContext.html ├── SerializableHasSerialVersionUIDField.html ├── SerializableHasSerializationMethods.html ├── SerializableInnerClassHasSerialVersionUIDField.html ├── SerializableInnerClassWithNonSerializableOuterClass.html ├── SerializableStoresNonSerializable.html ├── SerializableWithUnconstructableAncestor.html ├── SetReplaceableByEnumSet.html ├── SharedThreadLocalRandom.html ├── ShiftOutOfRange.html ├── SignalWithoutCorrespondingAwait.html ├── SillyAssignment.html ├── SimpleDateFormatWithoutLocale.html ├── SimplifiableAnnotation.html ├── SimplifiableBooleanExpression.html ├── SimplifiableConditionalExpression.html ├── SimplifiableEqualsExpression.html ├── SimplifiableIfStatement.html ├── SimplifiableJUnitAssertion.html ├── SimplifyCollector.html ├── SimplifyOptionalCallChains.html ├── SimplifyStreamApiCallChains.html ├── Since15.html ├── SingleCharAlternation.html ├── SingleCharacterStartsWith.html ├── SingleClassImport.html ├── SingleElementAnnotation.html ├── SingleStatementInBlock.html ├── Singleton.html ├── SizeReplaceableByIsEmpty.html ├── SleepWhileHoldingLock.html ├── SocketResource.html ├── SpellCheckingInspection.html ├── StandardVariableNames.html ├── StaticCallOnSubclass.html ├── StaticCollection.html ├── StaticFieldCanBeMovedToUse.html ├── StaticFieldReferenceOnSubclass.html ├── StaticGuardedByInstance.html ├── StaticImport.html ├── StaticInheritance.html ├── StaticInitializerReferencesSubClass.html ├── StaticMethodNamingConvention.html ├── StaticMethodOnlyUsedInOneClass.html ├── StaticNonFinalField.html ├── StaticPseudoFunctionalStyleMethod.html ├── StaticSuite.html ├── StaticVariableInitialization.html ├── StaticVariableNamingConvention.html ├── StaticVariableOfConcreteClass.html ├── StaticVariableUninitializedUse.html ├── StreamToLoop.html ├── StringBufferField.html ├── StringBufferMustHaveInitialCapacity.html ├── StringBufferReplaceableByString.html ├── StringBufferReplaceableByStringBuilder.html ├── StringBufferToStringInConcatenation.html ├── StringConcatenation.html ├── StringConcatenationArgumentToLogCall.html ├── StringConcatenationInFormatCall.html ├── StringConcatenationInLoops.html ├── StringConcatenationInMessageFormatCall.html ├── StringConcatenationInsideStringBufferAppend.html ├── StringConcatenationMissingWhitespace.html ├── StringConstructor.html ├── StringEquality.html ├── StringEqualsEmptyString.html ├── StringReplaceableByStringBuffer.html ├── StringToString.html ├── StringToUpperWithoutLocale.html ├── StringTokenizer.html ├── StringTokenizerDelimiter.html ├── SubstringZero.html ├── SubtractionInCompareTo.html ├── SuperTearDownInFinally.html ├── SuppressionAnnotation.html ├── SuspiciousArrayCast.html ├── SuspiciousArrayMethodCall.html ├── SuspiciousGetterSetter.html ├── SuspiciousIndentAfterControlStatement.html ├── SuspiciousLiteralUnderscore.html ├── SuspiciousLocalesLanguages.html ├── SuspiciousMethodCalls.html ├── SuspiciousNameCombination.html ├── SuspiciousSystemArraycopy.html ├── SuspiciousToArrayCall.html ├── SwitchStatement.html ├── SwitchStatementDensity.html ├── SwitchStatementWithConfusingDeclaration.html ├── SwitchStatementWithTooFewBranches.html ├── SwitchStatementWithTooManyBranches.html ├── SwitchStatementsWithoutDefault.html ├── SynchronizationOnGetClass.html ├── SynchronizationOnLocalVariableOrMethodParameter.html ├── SynchronizationOnStaticField.html ├── SynchronizeOnLock.html ├── SynchronizeOnNonFinalField.html ├── SynchronizeOnThis.html ├── SynchronizedMethod.html ├── SynchronizedOnLiteralObject.html ├── SyntaxError.html ├── SystemExit.html ├── SystemGC.html ├── SystemGetenv.html ├── SystemOutErr.html ├── SystemProperties.html ├── SystemRunFinalizersOnExit.html ├── SystemSetSecurityManager.html ├── TailRecursion.html ├── TestCaseInProductCode.html ├── TestCaseWithConstructor.html ├── TestCaseWithNoTestMethods.html ├── TestMethodInProductCode.html ├── TestMethodIsPublicVoidNoArg.html ├── TestMethodWithoutAssertion.html ├── TestOnlyProblems.html ├── TextLabelInSwitchStatement.html ├── ThisEscapedInConstructor.html ├── ThreadDeathRethrown.html ├── ThreadDumpStack.html ├── ThreadLocalNotStaticFinal.html ├── ThreadPriority.html ├── ThreadRun.html ├── ThreadStartInConstruction.html ├── ThreadStopSuspendResume.html ├── ThreadWithDefaultRunMethod.html ├── ThreadYield.html ├── ThreeNegationsPerMethod.html ├── ThrowCaughtLocally.html ├── ThrowFromFinallyBlock.html ├── ThrowableNotThrown.html ├── ThrowablePrintStackTrace.html ├── ThrowablePrintedToSystemOut.html ├── ThrownExceptionsPerMethod.html ├── ThrowsRuntimeException.html ├── TimeToString.html ├── ToArrayCallWithZeroLengthArrayArgument.html ├── TodoComment.html ├── TooBroadCatch.html ├── TooBroadScope.html ├── TooBroadThrows.html ├── TrailingSpacesInProperty.html ├── TransientFieldInNonSerializableClass.html ├── TransientFieldNotInitialized.html ├── TrivialFunctionalExpressionUsage.html ├── TrivialIf.html ├── TrivialMethodReference.html ├── TrivialStringConcatenation.html ├── TryFinallyCanBeTryWithResources.html ├── TryStatementWithMultipleResources.html ├── TryWithIdenticalCatches.html ├── TypeMayBeWeakened.html ├── TypeParameterExtendsFinalClass.html ├── TypeParameterExtendsObject.html ├── TypeParameterHidesVisibleType.html ├── TypeParameterNamingConvention.html ├── UNCHECKED_WARNING.html ├── UNUSED_IMPORT.html ├── UnaryPlus.html ├── UncheckedExceptionClass.html ├── UnclearBinaryExpression.html ├── UnconditionalWait.html ├── UnconstructableTestCase.html ├── UnknownGuard.html ├── UnnecessarilyQualifiedInnerClassAccess.html ├── UnnecessarilyQualifiedStaticUsage.html ├── UnnecessarilyQualifiedStaticallyImportedElement.html ├── UnnecessaryBlockStatement.html ├── UnnecessaryBoxing.html ├── UnnecessaryBreak.html ├── UnnecessaryCallToStringValueOf.html ├── UnnecessaryConditionalExpression.html ├── UnnecessaryConstantArrayCreationExpression.html ├── UnnecessaryConstructor.html ├── UnnecessaryContinue.html ├── UnnecessaryDefault.html ├── UnnecessaryEmptyArrayUsage.html ├── UnnecessaryEnumModifier.html ├── UnnecessaryExplicitNumericCast.html ├── UnnecessaryFinalOnLocalVariableOrParameter.html ├── UnnecessaryFullyQualifiedName.html ├── UnnecessaryInheritDoc.html ├── UnnecessaryInitCause.html ├── UnnecessaryInterfaceModifier.html ├── UnnecessaryJavaDocLink.html ├── UnnecessaryLabelOnBreakStatement.html ├── UnnecessaryLabelOnContinueStatement.html ├── UnnecessaryLocalVariable.html ├── UnnecessaryModuleDependencyInspection.html ├── UnnecessaryParentheses.html ├── UnnecessaryQualifierForThis.html ├── UnnecessaryReturn.html ├── UnnecessarySemicolon.html ├── UnnecessarySuperConstructor.html ├── UnnecessarySuperQualifier.html ├── UnnecessaryTemporaryOnConversionFromString.html ├── UnnecessaryTemporaryOnConversionToString.html ├── UnnecessaryThis.html ├── UnnecessaryToStringCall.html ├── UnnecessaryUnaryMinus.html ├── UnnecessaryUnboxing.html ├── UnnecessaryUnicodeEscape.html ├── UnpredictableBigDecimalConstructorCall.html ├── UnqualifiedFieldAccess.html ├── UnqualifiedInnerClassAccess.html ├── UnqualifiedMethodAccess.html ├── UnqualifiedStaticUsage.html ├── UnresolvedPropertyKey.html ├── UnresolvedReference.html ├── UnsecureRandomNumberGeneration.html ├── UnusedAssignment.html ├── UnusedCatchParameter.html ├── UnusedDefine.html ├── UnusedImport.html ├── UnusedLabel.html ├── UnusedLibrary.html ├── UnusedMessageFormatParameter.html ├── UnusedProperty.html ├── UnusedReturnValue.html ├── UpperCaseFieldNameNotConstant.html ├── UseBulkOperation.html ├── UseCompareMethod.html ├── UseOfAWTPeerClass.html ├── UseOfAnotherObjectsPrivateField.html ├── UseOfClone.html ├── UseOfJDBCDriverClass.html ├── UseOfObsoleteAssert.html ├── UseOfObsoleteDateTimeApi.html ├── UseOfObsoleteDateTimeApiInspection.html ├── UseOfProcessBuilder.html ├── UseOfPropertiesAsHashtable.html ├── UseOfSunClasses.html ├── UtilityClass.html ├── UtilityClassCanBeEnum.html ├── UtilityClassWithPublicConstructor.html ├── UtilityClassWithoutPrivateConstructor.html ├── VarargParameter.html ├── VariableNotUsedInsideIf.html ├── VolatileArrayField.html ├── VolatileLongOrDoubleField.html ├── WaitCalledOnCondition.html ├── WaitNotInLoop.html ├── WaitNotifyNotInSynchronizedContext.html ├── WaitOrAwaitWithoutTimeout.html ├── WaitWhileHoldingTwoLocks.html ├── WaitWithoutCorrespondingNotify.html ├── WeakerAccess.html ├── WhileCanBeForeach.html ├── WhileLoopSpinsOnField.html ├── WrongPackageStatement.html ├── WrongPropertyKeyValueDelimiter.html ├── XmlDefaultAttributeValue.html ├── XmlDuplicatedId.html ├── XmlHighlighting.html ├── XmlInvalidId.html ├── XmlPathReference.html ├── XmlUnboundNsPrefix.html ├── XmlUnusedNamespaceDeclaration.html ├── XmlWrongRootElement.html ├── ZeroLengthArrayInitialization.html └── unused.html ├── intentionDescriptions ├── AdapterToListenerIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── AddAnnotationFix │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── AddClarifyingParenthesesIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── AddJavadocIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── AddOnDemandStaticImportAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── AddRuntimeExceptionToThrowsAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── AddSchemaPrefixIntention │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── AddSingleMemberStaticImportAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── AddXsiSchemaLocationForExtResourceAction │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── AnnotateOverriddenMethodsIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── AssignFieldFromParameterAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── BindFieldsFromParametersAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── BreakStringOnLineBreaksIntentionAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ChangeClassParametersIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ChangeToCStyleCommentIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ChangeToEndOfLineCommentIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ChangeVariableTypeToRhsTypeIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── CharToStringIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── CheckRegExpIntentionAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── CollapseTagIntention │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── ColorChooserIntentionAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ComposeFunctionChainAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConcatenationToMessageFormatAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConfigureCodeStyleOnSelectedFragment │ ├── after.txt.template │ ├── before.txt.template │ └── description.html ├── ConstantExpressionIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConstantSubexpressionIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConverFieldToAtomicIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertAbsolutePathToRelativeIntentionAction │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── ConvertAtomicToLongAdderIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertCatchToThrowsIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertColorRepresentationIntentionAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertCompareToToEqualsIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertEqualsMethodToStaticIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertFieldToAtomicIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertFieldToThreadLocalIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertIntegerToBinaryIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertIntegerToDecimalIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertIntegerToHexIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertIntegerToOctalIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertInterfaceToClassIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertJUnit3TestCaseToJUnit4Intention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertRelativePathToAbsoluteIntentionAction │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── ConvertSchemaPrefixToDefaultIntention │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── ConvertToBasicLatinAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertToNestedIfIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertToPlainIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertToScientificNotationIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ConvertToStringLiteralAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── CopyAbstractMethodImplementationAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── CopyConcatenatedStringToClipboardIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── CreateAssertIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── CreateCastExpressionFromInstanceofAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── CreateEnumSwitchBranchesIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── CreateFieldFromParameterAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── CreateLocalVarFromInstanceofAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── CreateSubclassAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── CreateSwitchIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── CreateTestAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── DataPointHolderConversionIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── DeannotateIntentionAction │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── DefineParamsDefaultValueAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── DemorgansIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── DetailExceptionsIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── EditContractIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── EncapsulateFieldAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ExpandBooleanIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ExpandStaticImportAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ExtractChainedMapAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ExtractIfConditionAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ExtractIncrementIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ExtractSetFromComparisonChainAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ExtractToMethodReferenceIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ExtractWhileLoopConditionToIfStatementIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── FetchExtResourceAction │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── FlipAssertLiteralIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── FlipCommaIntention │ ├── after.sql.template │ ├── before.sql.template │ └── description.html ├── FlipCommutativeMethodCallIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── FlipComparisonIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── FlipConditionalIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── FlipConjunctionIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── FlipExpressionIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── FlipSetterCallIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── GenerateMissedTestsAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ImplementAbstractMethodAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── InlineIncrementIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── InlineStreamMapAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── InsertLiteralUnderscoresAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── IntroduceVariableIntentionAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── InvertIfConditionAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── IterateOverIterableIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── JoinConcatenatedStringLiteralsIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── JoinDeclarationAndAssignmentAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MakeAnnotationExternal │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MakeCallChainIntoCallSequenceIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MakeExternalAnnotationExplicit │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MakeInferredAnnotationExplicit │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MakeMethodDefaultIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MakePackagePrivateIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MakePrivateIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MakeProtectedIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MakePublicIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ManuallySetupExtResourceAction │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── MergeCallSequenceToChainIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MergeElseIfIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MergeFilterChainAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MergeIfAndIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MergeIfOrIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MergeNestedTryStatementsIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MergeParallelForLoopsIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MergeParallelIfsIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MoveCommentToSeparateLineIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MoveDeclarationIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MoveInitializerToConstructorAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── MoveInitializerToSetUpMethodAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── NegateComparisonIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── NegateConditionalIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ObjectsRequireNonNullIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ObscureThrownExceptionsIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── PostfixPrefixIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── PushConditionInCallAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── QuickEditAction │ ├── after.txt.template │ ├── before.txt.template │ └── description.html ├── RemoveLiteralUnderscoresAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceArmWithTryFinallyIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceAssertEqualsWithAssertLiteralIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceAssertLiteralWithAssertEqualsIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceAssignmentWithPostfixExpressionIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceCastWithVariableAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceConcatenationWithFormatStringIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceConcatenationWithStringBufferIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceConditionalWithBooleanExpressionIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceConditionalWithIfIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceDoWhileLoopWithWhileLoopIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceEqualsWithEqualityIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceForEachLoopWithIndexedForLoopIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceForEachLoopWithIteratorForLoopIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceForEachLoopWithOptimizedIndexedForLoopIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceForLoopWithWhileLoopIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceFullyQualifiedNameWithImportIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceIfWithConditionalIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceIfWithSwitchIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceImplementsWithStaticImportAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceMultiplyWithShiftIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceOctalEscapeWithUnicodeEscapeIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceOnDemandImportIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceOperatorAssignmentWithAssignmentIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceOperatorAssignmentWithPostfixExpressionIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplacePostfixExpressionWithAssignmentIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplacePostfixExpressionWithOperatorAssignmentIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceShiftWithMultiplyIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceSwitchWithIfIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceWhileLoopWithDoWhileLoopIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceWithArraysAsListIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReplaceWithOperatorAssignmentIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ReverseForLoopDirectionIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── SimplifyBooleanExpressionAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── SimplifyIfElseIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── SplitDeclarationAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── SplitDeclarationAndInitializationIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── SplitElseIfIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── SplitFilterAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── SplitIfAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── StringToCharIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── SurroundAutoCloseableAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── SwapIfStatementsIntentionAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── SwapMethodCallArgumentsIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── ToggleSourceInferredAnnotations │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── UnicodeUnescapeIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── UnimplementInterfaceAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── UnwrapElseBranchAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── WrapVarargArgumentsWithExplicitArrayIntention │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── XmlChooseColorIntentionAction │ ├── after.xml.template │ ├── before.xml.template │ └── description.html └── XmlSplitTagAction │ ├── after.html.template │ ├── before.html.template │ └── description.html ├── messages ├── ActionsBundle.properties ├── AnalysisScopeBundle.properties ├── AntBundle.properties ├── ApplicationBundle.properties ├── CodeEditorBundle.properties ├── CodeInsightBundle.properties ├── CommonBundle.properties ├── CompilerBundle.properties ├── CompletionBundle.properties ├── DaemonBundle.properties ├── DebuggerBundle.properties ├── DesignerBundle.properties ├── DiagnosticBundle.properties ├── DiffBundle.properties ├── DomBundle.properties ├── DupLocatorBundle.properties ├── EditorBundle.properties ├── ExecutionBundle.properties ├── FeatureStatisticsBundle.properties ├── FileTypesBundle.properties ├── FindBundle.properties ├── GraphBundle.properties ├── IdeBundle.properties ├── InspectionsBundle.properties ├── JamBundle.properties ├── JavaCoreBundle.properties ├── JavaErrorMessages.properties ├── JavadocBundle.properties ├── KeyMapBundle.properties ├── LangBundle.properties ├── LicenseCommonBundle.properties ├── LocalHistoryBundle.properties ├── OptionsBundle.properties ├── ProjectBundle.properties ├── PsiBundle.properties ├── QuickFixBundle.properties ├── RefactoringBundle.properties ├── SMTestsRunnerBundle.properties ├── SSRBundle.properties ├── SshBundle.properties ├── StatisticsBundle.properties ├── ToolsBundle.properties ├── UIBundle.properties ├── UsageView.properties ├── VcsBundle.properties ├── VfsBundle.properties ├── XDebuggerBundle.properties ├── XmlBundle.properties └── XmlErrorMessages.properties ├── org ├── intellij │ └── images │ │ └── ImagesBundle.properties └── jetbrains │ └── lang │ └── manifest │ └── ManifestBundle.properties ├── search ├── ignore.txt ├── searchableOptions.xml └── synonyms.xml └── tips ├── AdaptiveWelcome.html ├── AltInsertInEditor.html ├── AnnotationsAndDiffs.html ├── Antivirus.html ├── BreakpointSpeedmenu.html ├── CamelHumpsInCodeCompletion.html ├── CamelPrefixesInNavigationPopups.html ├── CancelByControlArrows.html ├── ChangeSignatureAfterMovingParameters.html ├── ChangeSorting.html ├── ChangesView.html ├── CheckRegExp.html ├── ClipboardStack.html ├── CloseOthers.html ├── ClosingTabsWithMiddleMouse.html ├── ClosingTag.html ├── CodeCompletion.html ├── CodeCompletionInSearch.html ├── CodeCompletionMiddle.html ├── CodeCompletionNoShift.html ├── ColorEditingInCss.html ├── ColorFiles.html ├── ColumnSelection.html ├── CommentCode.html ├── CommitCtrlK.html ├── Compare.html ├── CompleteMethod.html ├── CompleteStatement.html ├── CompletionImportStatic.html ├── CompletionInHTML.html ├── ConfiguringTerminal.html ├── ConstructorDocs.html ├── ContextInfo.html ├── CopyClass.html ├── CopyPasteReference.html ├── CopyWithNoSelection.html ├── CreatePropertyTag.html ├── CreateTargetTag.html ├── CreateTestIntentionAction.html ├── CtrlD.html ├── CtrlDotInLookups.html ├── CtrlShiftI.html ├── CtrlShiftIForLookup.html ├── CtrlW.html ├── DeleteLine.html ├── DiffChevron.html ├── DirDiff.html ├── DisableBulb.html ├── DotEtcInLookups.html ├── DragToOpen.html ├── EclipseQuickOpen.html ├── EditRegExp.html ├── Emmet.html ├── EnterDirectoryInGotoFile.html ├── Escape.html ├── EscapeCharactersInResourceBundle.html ├── EvaluateExpressionInEditor.html ├── ExcludeFromProject.html ├── ExternalJavaDoc.html ├── FavoritesToolWindow1.html ├── FavoritesToolWindow2.html ├── FileStructurePopup.html ├── FindInPath.html ├── FindReplaceToggle.html ├── FindUsages.html ├── FinishByExclamation.html ├── FinishBySmartEnter.html ├── FixDocComment.html ├── GoToAction.html ├── GoToClass.html ├── GoToDeclaration.html ├── GoToFile.html ├── GoToImplementation.html ├── GoToInspection.html ├── GoToSymbol.html ├── GotoLineInFile.html ├── HierarchyBrowser.html ├── HighlightImplements.html ├── HighlightMethodExitPoint.html ├── HighlightThrows.html ├── HighlightUsagesInFile.html ├── HippieCompletion.html ├── HorizontalScrolling.html ├── ImageFileCompletion.html ├── ImagesLookup.html ├── InsertLiveTemplate.html ├── IntroduceVariable.html ├── IntroduceVariableIncompleteCode.html ├── IssueNavigation.html ├── JarDiff.html ├── JoinLines.html ├── JumpToLastEdit.html ├── LayoutCode.html ├── LensMode.html ├── LineEndings.html ├── LineEndingsFolder.html ├── LiveTemplates.html ├── LiveTemplatesRestore.html ├── LocalVCS.html ├── MavenQuickOpen.html ├── MenuItemsDescriptions.html ├── MethodSeparators.html ├── MethodUpDown.html ├── MoveInnerToUpper.html ├── MoveToChangelist.html ├── MoveUpDown.html ├── Multicursor.html ├── Multicursor1.html ├── Multiselection1.html ├── Multiselection2.html ├── MultiselectionWords.html ├── NavBar.html ├── NavigateToFilePath.html ├── NextPrevError.html ├── NotReadyYet.html ├── OverrideImplementMethods.html ├── ParameterInfo.html ├── PostfixCompletion.html ├── PreviewTODO.html ├── PrintKeywords.html ├── PropertiesCompletion.html ├── QuickDocInSuggestionList.html ├── QuickDocOnMouseMove.html ├── QuickEvaluateExpression.html ├── QuickFixRightArrow.html ├── QuickJavaDoc.html ├── QuickJavaDocInLookups.html ├── QuickSwitchScheme.html ├── RecentChanges.html ├── RecentFiles.html ├── RecentSearch.html ├── RefactorThis.html ├── RemoveToolWindowButton.html ├── Rename.html ├── RenameCssSelector.html ├── RichTextCopy.html ├── RunConfigFolders.html ├── ScopesInTODO.html ├── Scratch.html ├── ScratchesView.html ├── SearchEverywhere.html ├── SearchInSettings.html ├── SecondBasicClassNameCompletion.html ├── SecondSmartCompletionArrayMember.html ├── SecondSmartCompletionAsList.html ├── SecondSmartCompletionChain.html ├── SecondSmartCompletionToar.html ├── SelectIn.html ├── SelectRunDebugConfiguration.html ├── SelectTasks.html ├── ShowAppliedStyles.html ├── ShowHideSideBars.html ├── ShowUsages.html ├── SmartTypeAfterNew.html ├── SmartTypeCasting.html ├── SmartTypeCompletion.html ├── SpecialCharacters.html ├── SpeedSearch.html ├── SpeedSearchinLiveTemplates.html ├── Spellchecker.html ├── SpellcheckerDictionaries.html ├── SurroundWith.html ├── Switcher.html ├── TabInEditorClose.html ├── TabInLookups.html ├── TagNameCompletion.html ├── Terminal.html ├── TerminalOpen.html ├── UploadSshKey.html ├── VariableNameCompletion.html ├── VcsQuickList.html ├── Welcome.html ├── WideScreen.html ├── WildcardsInNavigationPopups.html ├── WordCompletion.html ├── css ├── tips.css └── tips_darcula.css ├── excluded ├── AutoindentClosingBrace.html ├── AutoindentPastedBlock.html ├── CopyWithNoSelection.html ├── CtrlPgUpInCommander.html ├── CtrlShiftF4.html ├── DisableAutopopup.html ├── ExportUsageTree.html ├── F12.html ├── InsertImportsOnPaste.html ├── InsertInCommander.html ├── Move.html ├── NavigateFromStackTrace.html ├── SmartEnd.html ├── SpeedSearchInCommander.html └── SynchronizeViewsInCommander.html ├── images ├── CodeCompletionInSearch.png ├── CodeCompletionInSearch@2x.png ├── CodeCompletionInSearch@2x_dark.png ├── CodeCompletionInSearch_dark.png ├── PostfixCompletion.png ├── PostfixCompletion@2x.png ├── PostfixCompletion@2x_dark.png ├── PostfixCompletion_dark.png ├── RunConfigFolder.png ├── RunConfigFolder@2x.png ├── RunConfigFolder@2x_dark.png ├── RunConfigFolder_dark.png ├── SSHKeyUpload.png ├── SpeedSearchInLiveTemplates.png ├── SpeedSearchInLiveTemplates@2x.png ├── SpeedSearchInLiveTemplates@2x_dark.png ├── SpeedSearchInLiveTemplates_dark.png ├── alt_insert_in_editor.png ├── alt_insert_in_editor@2x.png ├── alt_insert_in_editor@2x_dark.png ├── alt_insert_in_editor_dark.png ├── annotationShowDiff.png ├── annotationShowDiff@2x.png ├── annotationShowDiff@2x_dark.png ├── annotationShowDiff_dark.png ├── ant_property_intention.png ├── ant_property_intention@2x.png ├── ant_property_intention@2x_dark.png ├── ant_property_intention_dark.png ├── ant_target_intention.png ├── ant_target_intention@2x.png ├── ant_target_intention@2x_dark.png ├── ant_target_intention_dark.png ├── apply_signature_change.png ├── apply_signature_change@2x.png ├── apply_signature_change@2x_dark.png ├── apply_signature_change_dark.png ├── arrayMember.png ├── arrayMember@2x.png ├── arrayMember@2x_dark.png ├── arrayMember_dark.png ├── arrow.png ├── arrow@2x.png ├── arrow@2x_dark.png ├── arrowLeftDown.png ├── arrowLeftDown@2x.png ├── arrowLeftDown@2x_dark.png ├── arrowLeftDown_dark.png ├── arrowRight.png ├── arrowRight@2x.png ├── arrowRight@2x_dark.png ├── arrowRightDown.png ├── arrowRightDown@2x.png ├── arrowRightDown@2x_dark.png ├── arrowRightDown_dark.png ├── arrowRight_dark.png ├── arrow_dark.png ├── aslist_after.png ├── aslist_after@2x.png ├── aslist_after@2x_dark.png ├── aslist_after_dark.png ├── aslist_before.png ├── aslist_before@2x.png ├── aslist_before@2x_dark.png ├── aslist_before_dark.png ├── bookmarks1.png ├── bookmarks1@2x.png ├── bookmarks1@2x_dark.png ├── bookmarks1_dark.png ├── breakpoint_speedmenu.png ├── breakpoint_speedmenu@2x.png ├── breakpoint_speedmenu@2x_dark.png ├── breakpoint_speedmenu_dark.png ├── bullet.png ├── camel_completion.gif ├── camel_completion.png ├── camel_completion@2x.png ├── camel_completion@2x_dark.png ├── camel_completion_dark.png ├── camel_goto.png ├── camel_goto@2x.png ├── camel_goto@2x_dark.png ├── camel_goto_dark.png ├── chain_after.png ├── changeLookupSorting.png ├── changeLookupSorting@2x.png ├── changeLookupSorting@2x_dark.png ├── changeLookupSorting_dark.png ├── checkRegExp.png ├── checkRegExp@2x.png ├── checkRegExp@2x_dark.png ├── checkRegExp_dark.png ├── close1.png ├── close_others.png ├── close_others@2x.png ├── close_others@2x_dark.png ├── close_others_dark.png ├── closing_tags.png ├── closing_tags@2x.png ├── closing_tags@2x_dark.png ├── closing_tags_dark.png ├── code_completion.gif ├── code_completion.png ├── code_completion@2x.png ├── code_completion@2x_dark.png ├── code_completion_dark.png ├── code_completion_middle.png ├── code_completion_middle@2x.png ├── code_completion_middle@2x_dark.png ├── code_completion_middle_dark.png ├── code_completion_no_shift.png ├── code_completion_no_shift@2x.png ├── code_completion_no_shift@2x_dark.png ├── code_completion_no_shift_dark.png ├── coloredFiles.png ├── coloredFiles@2x.png ├── coloredFiles@2x_dark.png ├── coloredFiles_dark.png ├── columnSelection.png ├── columnSelection@2x.png ├── columnSelection@2x_dark.png ├── columnSelection_dark.png ├── complete_statement.png ├── complete_statement@2x.png ├── complete_statement@2x_dark.png ├── complete_statement_dark.png ├── completionImportStatic.png ├── completionImportStatic@2x.png ├── completionImportStatic@2x_dark.png ├── completionImportStatic_dark.png ├── completion_in_html.png ├── completion_in_html2.png ├── completion_in_html2@2x.png ├── completion_in_html2@2x_dark.png ├── completion_in_html2_dark.png ├── completion_in_html@2x.png ├── completion_in_html@2x_dark.png ├── completion_in_html_dark.png ├── copy_rich_text.png ├── copy_rich_text@2x.png ├── copy_rich_text@2x_dark.png ├── copy_rich_text_dark.png ├── createTest.png ├── createTest@2x.png ├── createTest@2x_dark.png ├── createTest_dark.png ├── cssColor.png ├── cssColor@2x.png ├── cssColor@2x_dark.png ├── cssColor_dark.png ├── ctrl_click.gif ├── ctrl_click.png ├── ctrl_click@2x.png ├── ctrl_click@2x_dark.png ├── ctrl_click_dark.png ├── ctrl_shift_i.gif ├── ctrl_shift_i.png ├── ctrl_shift_i@2x.png ├── ctrl_shift_i@2x_dark.png ├── ctrl_shift_i_dark.png ├── ctrl_shift_i_lookup.gif ├── ctrl_shift_in_lookup.png ├── ctrl_shift_in_lookup@2x.png ├── ctrl_shift_in_lookup@2x_dark.png ├── ctrl_shift_in_lookup_dark.png ├── dragToOpen.png ├── dragToOpen@2x.png ├── dragToOpen@2x_dark.png ├── dragToOpen_dark.png ├── editregexp.png ├── editregexp@2x.png ├── editregexp@2x_dark.png ├── editregexp_dark.png ├── emmet.png ├── emmet@2x.png ├── emmet@2x_dark.png ├── emmet_dark.png ├── enterDirectory.png ├── enterDirectory@2x.png ├── enterDirectory@2x_dark.png ├── enterDirectory_dark.png ├── exclamationFinish_after.png ├── exclamationFinish_after@2x.png ├── exclamationFinish_after@2x_dark.png ├── exclamationFinish_after_dark.png ├── exclamationFinish_before.png ├── exclamationFinish_before@2x.png ├── exclamationFinish_before@2x_dark.png ├── exclamationFinish_before_dark.png ├── external_file.png ├── extract_variable_incomplete.png ├── extract_variable_incomplete@2x.png ├── extract_variable_incomplete@2x_dark.png ├── extract_variable_incomplete_dark.png ├── find_action.png ├── find_action@2x.png ├── find_action@2x_dark.png ├── find_action_dark.png ├── first_class_name_completion.png ├── fix_doc_comment.png ├── fix_doc_comment@2x.png ├── fix_doc_comment@2x_dark.png ├── fix_doc_comment_dark.png ├── gotoFileLineNumber.png ├── gotoFileLineNumber@2x.png ├── gotoFileLineNumber@2x_dark.png ├── gotoFileLineNumber_dark.png ├── goto_class.gif ├── goto_class.png ├── goto_class@2x.png ├── goto_class@2x_dark.png ├── goto_class_dark.png ├── goto_file.png ├── goto_file@2x.png ├── goto_file@2x_dark.png ├── goto_file_dark.png ├── goto_symbol.gif ├── goto_symbol.png ├── goto_symbol@2x.png ├── goto_symbol@2x_dark.png ├── goto_symbol_dark.png ├── hierarchy_browser.png ├── hierarchy_browser@2x.png ├── hierarchy_browser@2x_dark.png ├── hierarchy_browser_dark.png ├── highlightExceptions.png ├── highlightExceptions@2x.png ├── highlightExceptions@2x_dark.png ├── highlightExceptions_dark.png ├── highlightImplemented.png ├── highlightImplemented@2x.png ├── highlightImplemented@2x_dark.png ├── hippie.png ├── hippie@2x.png ├── hippie@2x_dark.png ├── hippie_dark.png ├── image_completion.png ├── image_completion@2x.png ├── image_completion@2x_dark.png ├── image_completion_dark.png ├── image_lookup.gif ├── image_lookup.png ├── image_lookup@2x.png ├── image_lookup@2x_dark.png ├── image_lookup_dark.png ├── insert_live_template.png ├── insert_live_template@2x.png ├── insert_live_template@2x_dark.png ├── insert_live_template_dark.png ├── inspection_by_name.png ├── inspection_by_name@2x.png ├── inspection_by_name@2x_dark.png ├── inspection_by_name_dark.png ├── introduce_variable_1.gif ├── introduce_variable_1.png ├── introduce_variable_1@2x.png ├── introduce_variable_1@2x_dark.png ├── introduce_variable_1_dark.png ├── introduce_variable_2.gif ├── introduce_variable_2.png ├── introduce_variable_2@2x.png ├── introduce_variable_2@2x_dark.png ├── introduce_variable_2_dark.png ├── issueNavigation.png ├── issueNavigation1.png ├── issueNavigation1@2x.png ├── issueNavigation1@2x_dark.png ├── issueNavigation1_dark.png ├── issueNavigation_dark.png ├── lens.png ├── lens1.png ├── lens1@2x.png ├── lens1@2x_dark.png ├── lens1_dark.png ├── lens@2x.png ├── lens@2x_dark.png ├── lens_dark.png ├── line_separator.png ├── line_separator@2x.png ├── line_separator@2x_dark.png ├── line_separator_dark.png ├── line_separator_folder.png ├── line_separator_folder@2x.png ├── line_separator_folder@2x_dark.png ├── line_separator_folder_dark.png ├── live_templates_1.png ├── live_templates_1@2x.png ├── live_templates_1@2x_dark.png ├── live_templates_1_dark.png ├── live_templates_2.png ├── live_templates_2@2x.png ├── live_templates_2@2x_dark.png ├── live_templates_2_dark.png ├── methodExitPoints.png ├── methodExitPoints@2x.png ├── methodExitPoints@2x_dark.png ├── method_separator.png ├── method_separator@2x.png ├── method_separator@2x_dark.png ├── method_separator_dark.png ├── missing_images.txt ├── move_inner.png ├── move_inner@2x.png ├── move_inner@2x_dark.png ├── move_inner_dark.png ├── move_to_changelist.png ├── move_to_changelist@2x.png ├── move_to_changelist@2x_dark.png ├── move_to_changelist_dark.png ├── move_up_down_witharrows_down.png ├── move_up_down_witharrows_down@2x.png ├── move_up_down_witharrows_down@2x_dark.png ├── move_up_down_witharrows_down_dark.png ├── move_up_down_witharrows_initial.png ├── move_up_down_witharrows_initial@2x.png ├── move_up_down_witharrows_initial@2x_dark.png ├── move_up_down_witharrows_initial_dark.png ├── move_up_down_witharrows_up.png ├── move_up_down_witharrows_up@2x.png ├── move_up_down_witharrows_up@2x_dark.png ├── move_up_down_witharrows_up_dark.png ├── multicursor.png ├── multicursor1.png ├── multicursor1@2x.png ├── multicursor1@2x_dark.png ├── multicursor1_dark.png ├── multicursor@2x.png ├── multicursor@2x_dark.png ├── multicursor_dark.png ├── multiselection2.png ├── multiselection2@2x.png ├── multiselection2@2x_dark.png ├── multiselection2_dark.png ├── multiselection_column.png ├── multiselection_column@2x.png ├── multiselection_column@2x_dark.png ├── multiselection_column_dark.png ├── multiselection_words.png ├── multiselection_words@2x.png ├── multiselection_words@2x_dark.png ├── multiselection_words_dark.png ├── navigateToFilePath.png ├── navigateToFilePath@2x.png ├── navigateToFilePath@2x_dark.png ├── navigateToFilePath_dark.png ├── navigationbar.png ├── navigationbar@2x.png ├── navigationbar@2x_dark.png ├── navigationbar_dark.png ├── param_info.png ├── param_info@2x.png ├── param_info@2x_dark.png ├── param_info_dark.png ├── parm_info.gif ├── properties_completion.png ├── properties_completion@2x.png ├── properties_completion@2x_dark.png ├── properties_completion_dark.png ├── qdoc_live_template.png ├── qdoc_live_template@2x.png ├── qdoc_live_template@2x_dark.png ├── qdoc_live_template_dark.png ├── quick_doc_on_mouse_move.png ├── quick_doc_on_mouse_move@2x.png ├── quick_doc_on_mouse_move@2x_dark.png ├── quick_doc_on_mouse_move_dark.png ├── quick_evaluate.png ├── quick_fix_options.png ├── quick_fix_options@2x.png ├── quick_fix_options@2x_dark.png ├── quick_fix_options_dark.png ├── quick_javadoc.gif ├── quick_javadoc.png ├── quick_javadoc@2x.png ├── quick_javadoc@2x_dark.png ├── quick_javadoc_dark.png ├── quick_javadoc_in_lookups.gif ├── quick_javadoc_in_lookups.png ├── quick_javadoc_in_lookups@2x.png ├── quick_javadoc_in_lookups@2x_dark.png ├── quick_javadoc_in_lookups_dark.png ├── quick_switch_scheme.png ├── quick_switch_scheme@2x.png ├── quick_switch_scheme@2x_dark.png ├── quick_switch_scheme_dark.png ├── quickdoc.png ├── quickdoc@2x.png ├── quickdoc@2x_dark.png ├── quickdoc_dark.png ├── recentSearch.png ├── recentSearch@2x.png ├── recentSearch@2x_dark.png ├── recentSearch_dark.png ├── recent_changes.png ├── recent_changes@2x.png ├── recent_changes@2x_dark.png ├── recent_changes_dark.png ├── recent_files_1.png ├── recent_files_1@2x.png ├── recent_files_1@2x_dark.png ├── recent_files_1_dark.png ├── recent_files_2.png ├── recent_files_2@2x.png ├── recent_files_2@2x_dark.png ├── recent_files_2_dark.png ├── refactor_this.png ├── refactor_this@2x.png ├── refactor_this@2x_dark.png ├── refactor_this_dark.png ├── reference_copied.png ├── reference_copied@2x.png ├── reference_copied@2x_dark.png ├── reference_copied_dark.png ├── reference_pasted.png ├── reference_pasted@2x.png ├── reference_pasted@2x_dark.png ├── reference_pasted_dark.png ├── remove.png ├── remove@2x.png ├── remove@2x_dark.png ├── remove_dark.png ├── remove_from_sidebar.png ├── remove_from_sidebar@2x.png ├── remove_from_sidebar@2x_dark.png ├── remove_from_sidebar_dark.png ├── rename.png ├── rename@2x.png ├── rename@2x_dark.png ├── rename_dark.png ├── resource_bundle_1.png ├── resource_bundle_2.png ├── scratch.png ├── scratch@2x.png ├── scratch@2x_dark.png ├── scratch_dark.png ├── scratches_view.png ├── scratches_view@2x.png ├── scratches_view@2x_dark.png ├── scratches_view_dark.png ├── searchEverywhere.png ├── searchEverywhere@2x.png ├── searchEverywhere@2x_dark.png ├── searchEverywhere_dark.png ├── searchEverywhere_lense.png ├── searchEverywhere_lense@2x.png ├── searchEverywhere_lense@2x_dark.png ├── searchEverywhere_lense_dark.png ├── search_settings.png ├── search_settings@2x.png ├── search_settings@2x_dark.png ├── search_settings_dark.png ├── second_code_completion.png ├── second_code_completion@2x.png ├── second_code_completion@2x_dark.png ├── second_code_completion_dark.png ├── select_in.gif ├── select_in.png ├── select_in@2x.png ├── select_in@2x_dark.png ├── select_in_dark.png ├── select_tasks.png ├── select_tasks@2x.png ├── select_tasks@2x_dark.png ├── select_tasks_dark.png ├── showUsages.png ├── showUsages@2x.png ├── showUsages@2x_dark.png ├── showUsages_dark.png ├── show_applied_styles.png ├── show_applied_styles@2x.png ├── show_applied_styles@2x_dark.png ├── show_applied_styles_dark.png ├── show_hide_tool_window_bars.png ├── sidebyside.png ├── sidebyside@2x.png ├── sidebyside@2x_dark.png ├── sidebyside_dark.png ├── smart_type_after_new_1.png ├── smart_type_after_new_1@2x.png ├── smart_type_after_new_1@2x_dark.png ├── smart_type_after_new_1_dark.png ├── smart_type_after_new_2.png ├── smart_type_after_new_2@2x.png ├── smart_type_after_new_2@2x_dark.png ├── smart_type_after_new_2_dark.png ├── smart_type_completion_1.png ├── smart_type_completion_1@2x.png ├── smart_type_completion_1@2x_dark.png ├── smart_type_completion_1_dark.png ├── smart_type_completion_2.png ├── smart_type_completion_2@2x.png ├── smart_type_completion_2@2x_dark.png ├── smart_type_completion_2_dark.png ├── speed_search.gif ├── speed_search.png ├── speed_search@2x.png ├── speed_search@2x_dark.png ├── speed_search_dark.png ├── surround_with.png ├── surround_with@2x.png ├── surround_with@2x_dark.png ├── surround_with_dark.png ├── switcher.png ├── switcher@2x.png ├── switcher@2x_dark.png ├── switcher_dark.png ├── tagNameCompletion.png ├── tagNameCompletion@2x.png ├── tagNameCompletion@2x_dark.png ├── tagNameCompletion_dark.png ├── terminal.png ├── terminal@2x.png ├── terminal@2x_dark.png ├── terminal_dark.png ├── toar_after.png ├── toar_after@2x.png ├── toar_after@2x_dark.png ├── toar_after_dark.png ├── toar_before.png ├── toar_before@2x.png ├── toar_before@2x_dark.png ├── toar_before_dark.png ├── todo_preview.png ├── todo_preview@2x.png ├── todo_preview@2x_dark.png ├── todo_preview_dark.png ├── todo_scopes.png ├── todo_scopes@2x.png ├── todo_scopes@2x_dark.png ├── todo_scopes_dark.png ├── variable_name_completion.png ├── variable_name_completion@2x.png ├── variable_name_completion@2x_dark.png ├── variable_name_completion_dark.png ├── vcsQuickList.png ├── vcsQuickList@2x.png ├── vcsQuickList@2x_dark.png ├── vcsQuickList_dark.png ├── wildcard_goto.png ├── wildcard_goto@2x.png ├── wildcard_goto@2x_dark.png ├── wildcard_goto_dark.png ├── word_completion.png ├── word_completion@2x.png ├── word_completion@2x_dark.png └── word_completion_dark.png ├── moveFileToChangelist.html └── todo.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/_config.yml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /src/main/resources/META-INF/jb/$$size$$: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /src/main/resources/com/intellij/json/JsonBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/com/intellij/json/JsonBundle.properties -------------------------------------------------------------------------------- /src/main/resources/com/intellij/tasks/TaskBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/com/intellij/tasks/TaskBundle.properties -------------------------------------------------------------------------------- /src/main/resources/fileTemplates_cn/Singleton.java.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/fileTemplates_cn/Singleton.java.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates_cn/code/Catch Statement Body.java.ft: -------------------------------------------------------------------------------- 1 | ${EXCEPTION}.printStackTrace(); -------------------------------------------------------------------------------- /src/main/resources/fileTemplates_cn/code/I18nized Expression.java.ft: -------------------------------------------------------------------------------- 1 | ${RESOURCE_BUNDLE}.getString("${PROPERTY_KEY}") -------------------------------------------------------------------------------- /src/main/resources/fileTemplates_cn/code/I18nized JSP Expression.jsp.ft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/fileTemplates_cn/code/Overridden Method Body.java.ft: -------------------------------------------------------------------------------- 1 | $CALL_SUPER; -------------------------------------------------------------------------------- /src/main/resources/fileTemplates_cn/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/fileTemplates_cn/default.html -------------------------------------------------------------------------------- /src/main/resources/fileTemplates_cn/includes/File Header.java.ft: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/fileTemplates_cn/includes/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/fileTemplates_cn/includes/default.html -------------------------------------------------------------------------------- /src/main/resources/fileTemplates_cn/internal/Class.java.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/fileTemplates_cn/internal/Class.java.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates_cn/internal/Class.java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/fileTemplates_cn/internal/Class.java.html -------------------------------------------------------------------------------- /src/main/resources/fileTemplates_cn/internal/Enum.java.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/fileTemplates_cn/internal/Enum.java.ft -------------------------------------------------------------------------------- /src/main/resources/fileTemplates_cn/internal/Enum.java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/fileTemplates_cn/internal/Enum.java.html -------------------------------------------------------------------------------- /src/main/resources/fileTemplates_cn/internal/module-info.java.ft: -------------------------------------------------------------------------------- 1 | #parse("File Header.java") 2 | module #[[$MODULE_NAME$]]# { 3 | } -------------------------------------------------------------------------------- /src/main/resources/i18n/ExternalSystemBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/i18n/ExternalSystemBundle.properties -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Annotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/Annotation.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Annotator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/Annotator.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/ArrayEquality.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/ArrayEquality.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/ArrayEquals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/ArrayEquals.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/ArrayHashCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/ArrayHashCode.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/AssertAsName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/AssertAsName.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/AutoBoxing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/AutoBoxing.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/AutoUnboxing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/AutoUnboxing.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/BadOddness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/BadOddness.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/BusyWait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/BusyWait.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/CanBeFinal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/CanBeFinal.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/CanBeStatic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/CanBeStatic.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/CheckDtdRefs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/CheckDtdRefs.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/ClassCoupling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/ClassCoupling.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/ConfusingElse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/ConfusingElse.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Contract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/Contract.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/DateToString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/DateToString.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Dependency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/Dependency.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Deprecation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/Deprecation.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/DivideByZero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/DivideByZero.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Duplicates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/Duplicates.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/EmptyClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/EmptyClass.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/EmptyMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/EmptyMethod.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/EmptyTryBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/EmptyTryBlock.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/EnumAsName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/EnumAsName.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/EnumClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/EnumClass.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/ErrorRethrown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/ErrorRethrown.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/ExtendsObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/ExtendsObject.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/ExtendsThread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/ExtendsThread.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/FeatureEnvy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/FeatureEnvy.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/FieldCount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/FieldCount.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/FinalClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/FinalClass.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/FinalMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/FinalMethod.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Finalize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/Finalize.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Guava.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/Guava.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/HTML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/HTML.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/IOResource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/IOResource.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/IfCanBeSwitch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/IfCanBeSwitch.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/JDBCResource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/JDBCResource.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/JNDIResource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/JNDIResource.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/JUnitRule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/JUnitRule.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Java8ListSort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/Java8ListSort.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Java8MapApi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/Java8MapApi.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/JavaDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/JavaDoc.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/JavacQuirks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/JavacQuirks.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/LawOfDemeter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/LawOfDemeter.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/LongLine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/LongLine.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/LossyEncoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/LossyEncoding.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/MagicConstant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/MagicConstant.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/MagicNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/MagicNumber.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/MethodCount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/MethodCount.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/MimeType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/MimeType.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/NakedNotify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/NakedNotify.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/NativeMethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/NativeMethods.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/NegatedIfElse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/NegatedIfElse.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/NestingDepth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/NestingDepth.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/NonFinalClone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/NonFinalClone.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/NonFinalGuard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/NonFinalGuard.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/NullThrown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/NullThrown.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/ObjectNotify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/ObjectNotify.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/OctalEscape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/OctalEscape.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/OctalLiteral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/OctalLiteral.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/PublicField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/PublicField.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/ReDoS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/ReDoS.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/ReturnNull.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/ReturnNull.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/ReturnThis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/ReturnThis.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/SafeLock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/SafeLock.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Since15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/Since15.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/Singleton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/Singleton.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/SystemExit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/SystemExit.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/SystemGC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/SystemGC.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/ThreadRun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/ThreadRun.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/TrivialIf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/TrivialIf.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/UnaryPlus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/UnaryPlus.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/UseOfClone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/UseOfClone.html -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/unused.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/inspectionDescriptions/unused.html -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/CollapseTagIntention/after.xml.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/InsertLiteralUnderscoresAction/after.java.template: -------------------------------------------------------------------------------- 1 | float pi = 3.141_592_654f; -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/IntroduceVariableIntentionAction/after.java.template: -------------------------------------------------------------------------------- 1 | int i = Integer.parseInt("1"); -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/MakeMethodDefaultIntention/after.java.template: -------------------------------------------------------------------------------- 1 | public interface X { 2 | default void foo() {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/MakePackagePrivateIntention/after.java.template: -------------------------------------------------------------------------------- 1 | class X { 2 | } -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/MakePrivateIntention/after.java.template: -------------------------------------------------------------------------------- 1 | public class X { 2 | 3 | private void f() {} 4 | } -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/MakeProtectedIntention/after.java.template: -------------------------------------------------------------------------------- 1 | protected class X { 2 | } -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/MakePublicIntention/after.java.template: -------------------------------------------------------------------------------- 1 | public class X { 2 | } -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/RemoveLiteralUnderscoresAction/after.java.template: -------------------------------------------------------------------------------- 1 | float pi = 3.141592654f; -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/UnicodeUnescapeIntention/after.java.template: -------------------------------------------------------------------------------- 1 | // this is the letter A 2 | -------------------------------------------------------------------------------- /src/main/resources/intentionDescriptions/UnimplementInterfaceAction/after.java.template: -------------------------------------------------------------------------------- 1 | public class X { 2 | } 3 | -------------------------------------------------------------------------------- /src/main/resources/messages/ActionsBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/ActionsBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/AntBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/AntBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/ApplicationBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/ApplicationBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/CodeEditorBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/CodeEditorBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/CodeInsightBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/CodeInsightBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/CommonBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/CommonBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/CompilerBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/CompilerBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/CompletionBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/CompletionBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/DaemonBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/DaemonBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/DebuggerBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/DebuggerBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/DesignerBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/DesignerBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/DiagnosticBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/DiagnosticBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/DiffBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/DiffBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/DomBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/DomBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/DupLocatorBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/DupLocatorBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/EditorBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/EditorBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/ExecutionBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/ExecutionBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/FileTypesBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/FileTypesBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/FindBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/FindBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/GraphBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/GraphBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/IdeBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/IdeBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/InspectionsBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/InspectionsBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/JamBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/JamBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/JavaCoreBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/JavaCoreBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/JavaErrorMessages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/JavaErrorMessages.properties -------------------------------------------------------------------------------- /src/main/resources/messages/JavadocBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/JavadocBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/KeyMapBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/KeyMapBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/LangBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/LangBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/LocalHistoryBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/LocalHistoryBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/OptionsBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/OptionsBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/ProjectBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/ProjectBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/PsiBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/PsiBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/QuickFixBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/QuickFixBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/RefactoringBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/RefactoringBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/SSRBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/SSRBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/SshBundle.properties: -------------------------------------------------------------------------------- 1 | ssh.configurable.name=SSH -------------------------------------------------------------------------------- /src/main/resources/messages/StatisticsBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/StatisticsBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/ToolsBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/ToolsBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/UIBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/UIBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/UsageView.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/UsageView.properties -------------------------------------------------------------------------------- /src/main/resources/messages/VcsBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/VcsBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/VfsBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/VfsBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/XDebuggerBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/XDebuggerBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/XmlBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/XmlBundle.properties -------------------------------------------------------------------------------- /src/main/resources/messages/XmlErrorMessages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/messages/XmlErrorMessages.properties -------------------------------------------------------------------------------- /src/main/resources/search/ignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/search/ignore.txt -------------------------------------------------------------------------------- /src/main/resources/search/searchableOptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/search/searchableOptions.xml -------------------------------------------------------------------------------- /src/main/resources/search/synonyms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/search/synonyms.xml -------------------------------------------------------------------------------- /src/main/resources/tips/AdaptiveWelcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/AdaptiveWelcome.html -------------------------------------------------------------------------------- /src/main/resources/tips/AltInsertInEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/AltInsertInEditor.html -------------------------------------------------------------------------------- /src/main/resources/tips/AnnotationsAndDiffs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/AnnotationsAndDiffs.html -------------------------------------------------------------------------------- /src/main/resources/tips/Antivirus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/Antivirus.html -------------------------------------------------------------------------------- /src/main/resources/tips/BreakpointSpeedmenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/BreakpointSpeedmenu.html -------------------------------------------------------------------------------- /src/main/resources/tips/CamelHumpsInCodeCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CamelHumpsInCodeCompletion.html -------------------------------------------------------------------------------- /src/main/resources/tips/CancelByControlArrows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CancelByControlArrows.html -------------------------------------------------------------------------------- /src/main/resources/tips/ChangeSorting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ChangeSorting.html -------------------------------------------------------------------------------- /src/main/resources/tips/ChangesView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ChangesView.html -------------------------------------------------------------------------------- /src/main/resources/tips/CheckRegExp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CheckRegExp.html -------------------------------------------------------------------------------- /src/main/resources/tips/ClipboardStack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ClipboardStack.html -------------------------------------------------------------------------------- /src/main/resources/tips/CloseOthers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CloseOthers.html -------------------------------------------------------------------------------- /src/main/resources/tips/ClosingTabsWithMiddleMouse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ClosingTabsWithMiddleMouse.html -------------------------------------------------------------------------------- /src/main/resources/tips/ClosingTag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ClosingTag.html -------------------------------------------------------------------------------- /src/main/resources/tips/CodeCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CodeCompletion.html -------------------------------------------------------------------------------- /src/main/resources/tips/CodeCompletionInSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CodeCompletionInSearch.html -------------------------------------------------------------------------------- /src/main/resources/tips/CodeCompletionMiddle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CodeCompletionMiddle.html -------------------------------------------------------------------------------- /src/main/resources/tips/CodeCompletionNoShift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CodeCompletionNoShift.html -------------------------------------------------------------------------------- /src/main/resources/tips/ColorEditingInCss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ColorEditingInCss.html -------------------------------------------------------------------------------- /src/main/resources/tips/ColorFiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ColorFiles.html -------------------------------------------------------------------------------- /src/main/resources/tips/ColumnSelection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ColumnSelection.html -------------------------------------------------------------------------------- /src/main/resources/tips/CommentCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CommentCode.html -------------------------------------------------------------------------------- /src/main/resources/tips/CommitCtrlK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CommitCtrlK.html -------------------------------------------------------------------------------- /src/main/resources/tips/Compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/Compare.html -------------------------------------------------------------------------------- /src/main/resources/tips/CompleteMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CompleteMethod.html -------------------------------------------------------------------------------- /src/main/resources/tips/CompleteStatement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CompleteStatement.html -------------------------------------------------------------------------------- /src/main/resources/tips/CompletionImportStatic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CompletionImportStatic.html -------------------------------------------------------------------------------- /src/main/resources/tips/CompletionInHTML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CompletionInHTML.html -------------------------------------------------------------------------------- /src/main/resources/tips/ConfiguringTerminal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ConfiguringTerminal.html -------------------------------------------------------------------------------- /src/main/resources/tips/ConstructorDocs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ConstructorDocs.html -------------------------------------------------------------------------------- /src/main/resources/tips/ContextInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ContextInfo.html -------------------------------------------------------------------------------- /src/main/resources/tips/CopyClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CopyClass.html -------------------------------------------------------------------------------- /src/main/resources/tips/CopyPasteReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CopyPasteReference.html -------------------------------------------------------------------------------- /src/main/resources/tips/CopyWithNoSelection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CopyWithNoSelection.html -------------------------------------------------------------------------------- /src/main/resources/tips/CreatePropertyTag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CreatePropertyTag.html -------------------------------------------------------------------------------- /src/main/resources/tips/CreateTargetTag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CreateTargetTag.html -------------------------------------------------------------------------------- /src/main/resources/tips/CreateTestIntentionAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CreateTestIntentionAction.html -------------------------------------------------------------------------------- /src/main/resources/tips/CtrlD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CtrlD.html -------------------------------------------------------------------------------- /src/main/resources/tips/CtrlDotInLookups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CtrlDotInLookups.html -------------------------------------------------------------------------------- /src/main/resources/tips/CtrlShiftI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CtrlShiftI.html -------------------------------------------------------------------------------- /src/main/resources/tips/CtrlShiftIForLookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CtrlShiftIForLookup.html -------------------------------------------------------------------------------- /src/main/resources/tips/CtrlW.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/CtrlW.html -------------------------------------------------------------------------------- /src/main/resources/tips/DeleteLine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/DeleteLine.html -------------------------------------------------------------------------------- /src/main/resources/tips/DiffChevron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/DiffChevron.html -------------------------------------------------------------------------------- /src/main/resources/tips/DirDiff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/DirDiff.html -------------------------------------------------------------------------------- /src/main/resources/tips/DisableBulb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/DisableBulb.html -------------------------------------------------------------------------------- /src/main/resources/tips/DotEtcInLookups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/DotEtcInLookups.html -------------------------------------------------------------------------------- /src/main/resources/tips/DragToOpen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/DragToOpen.html -------------------------------------------------------------------------------- /src/main/resources/tips/EclipseQuickOpen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/EclipseQuickOpen.html -------------------------------------------------------------------------------- /src/main/resources/tips/EditRegExp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/EditRegExp.html -------------------------------------------------------------------------------- /src/main/resources/tips/Emmet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/Emmet.html -------------------------------------------------------------------------------- /src/main/resources/tips/EnterDirectoryInGotoFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/EnterDirectoryInGotoFile.html -------------------------------------------------------------------------------- /src/main/resources/tips/Escape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/Escape.html -------------------------------------------------------------------------------- /src/main/resources/tips/EvaluateExpressionInEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/EvaluateExpressionInEditor.html -------------------------------------------------------------------------------- /src/main/resources/tips/ExcludeFromProject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ExcludeFromProject.html -------------------------------------------------------------------------------- /src/main/resources/tips/ExternalJavaDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ExternalJavaDoc.html -------------------------------------------------------------------------------- /src/main/resources/tips/FavoritesToolWindow1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/FavoritesToolWindow1.html -------------------------------------------------------------------------------- /src/main/resources/tips/FavoritesToolWindow2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/FavoritesToolWindow2.html -------------------------------------------------------------------------------- /src/main/resources/tips/FileStructurePopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/FileStructurePopup.html -------------------------------------------------------------------------------- /src/main/resources/tips/FindInPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/FindInPath.html -------------------------------------------------------------------------------- /src/main/resources/tips/FindReplaceToggle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/FindReplaceToggle.html -------------------------------------------------------------------------------- /src/main/resources/tips/FindUsages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/FindUsages.html -------------------------------------------------------------------------------- /src/main/resources/tips/FinishByExclamation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/FinishByExclamation.html -------------------------------------------------------------------------------- /src/main/resources/tips/FinishBySmartEnter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/FinishBySmartEnter.html -------------------------------------------------------------------------------- /src/main/resources/tips/FixDocComment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/FixDocComment.html -------------------------------------------------------------------------------- /src/main/resources/tips/GoToAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/GoToAction.html -------------------------------------------------------------------------------- /src/main/resources/tips/GoToClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/GoToClass.html -------------------------------------------------------------------------------- /src/main/resources/tips/GoToDeclaration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/GoToDeclaration.html -------------------------------------------------------------------------------- /src/main/resources/tips/GoToFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/GoToFile.html -------------------------------------------------------------------------------- /src/main/resources/tips/GoToImplementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/GoToImplementation.html -------------------------------------------------------------------------------- /src/main/resources/tips/GoToInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/GoToInspection.html -------------------------------------------------------------------------------- /src/main/resources/tips/GoToSymbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/GoToSymbol.html -------------------------------------------------------------------------------- /src/main/resources/tips/GotoLineInFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/GotoLineInFile.html -------------------------------------------------------------------------------- /src/main/resources/tips/HierarchyBrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/HierarchyBrowser.html -------------------------------------------------------------------------------- /src/main/resources/tips/HighlightImplements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/HighlightImplements.html -------------------------------------------------------------------------------- /src/main/resources/tips/HighlightMethodExitPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/HighlightMethodExitPoint.html -------------------------------------------------------------------------------- /src/main/resources/tips/HighlightThrows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/HighlightThrows.html -------------------------------------------------------------------------------- /src/main/resources/tips/HighlightUsagesInFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/HighlightUsagesInFile.html -------------------------------------------------------------------------------- /src/main/resources/tips/HippieCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/HippieCompletion.html -------------------------------------------------------------------------------- /src/main/resources/tips/HorizontalScrolling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/HorizontalScrolling.html -------------------------------------------------------------------------------- /src/main/resources/tips/ImageFileCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ImageFileCompletion.html -------------------------------------------------------------------------------- /src/main/resources/tips/ImagesLookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ImagesLookup.html -------------------------------------------------------------------------------- /src/main/resources/tips/InsertLiveTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/InsertLiveTemplate.html -------------------------------------------------------------------------------- /src/main/resources/tips/IntroduceVariable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/IntroduceVariable.html -------------------------------------------------------------------------------- /src/main/resources/tips/IssueNavigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/IssueNavigation.html -------------------------------------------------------------------------------- /src/main/resources/tips/JarDiff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/JarDiff.html -------------------------------------------------------------------------------- /src/main/resources/tips/JoinLines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/JoinLines.html -------------------------------------------------------------------------------- /src/main/resources/tips/JumpToLastEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/JumpToLastEdit.html -------------------------------------------------------------------------------- /src/main/resources/tips/LayoutCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/LayoutCode.html -------------------------------------------------------------------------------- /src/main/resources/tips/LensMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/LensMode.html -------------------------------------------------------------------------------- /src/main/resources/tips/LineEndings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/LineEndings.html -------------------------------------------------------------------------------- /src/main/resources/tips/LineEndingsFolder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/LineEndingsFolder.html -------------------------------------------------------------------------------- /src/main/resources/tips/LiveTemplates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/LiveTemplates.html -------------------------------------------------------------------------------- /src/main/resources/tips/LiveTemplatesRestore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/LiveTemplatesRestore.html -------------------------------------------------------------------------------- /src/main/resources/tips/LocalVCS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/LocalVCS.html -------------------------------------------------------------------------------- /src/main/resources/tips/MavenQuickOpen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/MavenQuickOpen.html -------------------------------------------------------------------------------- /src/main/resources/tips/MenuItemsDescriptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/MenuItemsDescriptions.html -------------------------------------------------------------------------------- /src/main/resources/tips/MethodSeparators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/MethodSeparators.html -------------------------------------------------------------------------------- /src/main/resources/tips/MethodUpDown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/MethodUpDown.html -------------------------------------------------------------------------------- /src/main/resources/tips/MoveInnerToUpper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/MoveInnerToUpper.html -------------------------------------------------------------------------------- /src/main/resources/tips/MoveToChangelist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/MoveToChangelist.html -------------------------------------------------------------------------------- /src/main/resources/tips/MoveUpDown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/MoveUpDown.html -------------------------------------------------------------------------------- /src/main/resources/tips/Multicursor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/Multicursor.html -------------------------------------------------------------------------------- /src/main/resources/tips/Multicursor1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/Multicursor1.html -------------------------------------------------------------------------------- /src/main/resources/tips/Multiselection1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/Multiselection1.html -------------------------------------------------------------------------------- /src/main/resources/tips/Multiselection2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/Multiselection2.html -------------------------------------------------------------------------------- /src/main/resources/tips/MultiselectionWords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/MultiselectionWords.html -------------------------------------------------------------------------------- /src/main/resources/tips/NavBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/NavBar.html -------------------------------------------------------------------------------- /src/main/resources/tips/NavigateToFilePath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/NavigateToFilePath.html -------------------------------------------------------------------------------- /src/main/resources/tips/NextPrevError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/NextPrevError.html -------------------------------------------------------------------------------- /src/main/resources/tips/NotReadyYet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/NotReadyYet.html -------------------------------------------------------------------------------- /src/main/resources/tips/OverrideImplementMethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/OverrideImplementMethods.html -------------------------------------------------------------------------------- /src/main/resources/tips/ParameterInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ParameterInfo.html -------------------------------------------------------------------------------- /src/main/resources/tips/PostfixCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/PostfixCompletion.html -------------------------------------------------------------------------------- /src/main/resources/tips/PreviewTODO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/PreviewTODO.html -------------------------------------------------------------------------------- /src/main/resources/tips/PrintKeywords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/PrintKeywords.html -------------------------------------------------------------------------------- /src/main/resources/tips/PropertiesCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/PropertiesCompletion.html -------------------------------------------------------------------------------- /src/main/resources/tips/QuickDocInSuggestionList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/QuickDocInSuggestionList.html -------------------------------------------------------------------------------- /src/main/resources/tips/QuickDocOnMouseMove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/QuickDocOnMouseMove.html -------------------------------------------------------------------------------- /src/main/resources/tips/QuickEvaluateExpression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/QuickEvaluateExpression.html -------------------------------------------------------------------------------- /src/main/resources/tips/QuickFixRightArrow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/QuickFixRightArrow.html -------------------------------------------------------------------------------- /src/main/resources/tips/QuickJavaDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/QuickJavaDoc.html -------------------------------------------------------------------------------- /src/main/resources/tips/QuickJavaDocInLookups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/QuickJavaDocInLookups.html -------------------------------------------------------------------------------- /src/main/resources/tips/QuickSwitchScheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/QuickSwitchScheme.html -------------------------------------------------------------------------------- /src/main/resources/tips/RecentChanges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/RecentChanges.html -------------------------------------------------------------------------------- /src/main/resources/tips/RecentFiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/RecentFiles.html -------------------------------------------------------------------------------- /src/main/resources/tips/RecentSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/RecentSearch.html -------------------------------------------------------------------------------- /src/main/resources/tips/RefactorThis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/RefactorThis.html -------------------------------------------------------------------------------- /src/main/resources/tips/RemoveToolWindowButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/RemoveToolWindowButton.html -------------------------------------------------------------------------------- /src/main/resources/tips/Rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/Rename.html -------------------------------------------------------------------------------- /src/main/resources/tips/RenameCssSelector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/RenameCssSelector.html -------------------------------------------------------------------------------- /src/main/resources/tips/RichTextCopy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/RichTextCopy.html -------------------------------------------------------------------------------- /src/main/resources/tips/RunConfigFolders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/RunConfigFolders.html -------------------------------------------------------------------------------- /src/main/resources/tips/ScopesInTODO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ScopesInTODO.html -------------------------------------------------------------------------------- /src/main/resources/tips/Scratch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/Scratch.html -------------------------------------------------------------------------------- /src/main/resources/tips/ScratchesView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ScratchesView.html -------------------------------------------------------------------------------- /src/main/resources/tips/SearchEverywhere.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SearchEverywhere.html -------------------------------------------------------------------------------- /src/main/resources/tips/SearchInSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SearchInSettings.html -------------------------------------------------------------------------------- /src/main/resources/tips/SecondSmartCompletionAsList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SecondSmartCompletionAsList.html -------------------------------------------------------------------------------- /src/main/resources/tips/SecondSmartCompletionChain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SecondSmartCompletionChain.html -------------------------------------------------------------------------------- /src/main/resources/tips/SecondSmartCompletionToar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SecondSmartCompletionToar.html -------------------------------------------------------------------------------- /src/main/resources/tips/SelectIn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SelectIn.html -------------------------------------------------------------------------------- /src/main/resources/tips/SelectRunDebugConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SelectRunDebugConfiguration.html -------------------------------------------------------------------------------- /src/main/resources/tips/SelectTasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SelectTasks.html -------------------------------------------------------------------------------- /src/main/resources/tips/ShowAppliedStyles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ShowAppliedStyles.html -------------------------------------------------------------------------------- /src/main/resources/tips/ShowHideSideBars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ShowHideSideBars.html -------------------------------------------------------------------------------- /src/main/resources/tips/ShowUsages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/ShowUsages.html -------------------------------------------------------------------------------- /src/main/resources/tips/SmartTypeAfterNew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SmartTypeAfterNew.html -------------------------------------------------------------------------------- /src/main/resources/tips/SmartTypeCasting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SmartTypeCasting.html -------------------------------------------------------------------------------- /src/main/resources/tips/SmartTypeCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SmartTypeCompletion.html -------------------------------------------------------------------------------- /src/main/resources/tips/SpecialCharacters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SpecialCharacters.html -------------------------------------------------------------------------------- /src/main/resources/tips/SpeedSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SpeedSearch.html -------------------------------------------------------------------------------- /src/main/resources/tips/SpeedSearchinLiveTemplates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SpeedSearchinLiveTemplates.html -------------------------------------------------------------------------------- /src/main/resources/tips/Spellchecker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/Spellchecker.html -------------------------------------------------------------------------------- /src/main/resources/tips/SpellcheckerDictionaries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SpellcheckerDictionaries.html -------------------------------------------------------------------------------- /src/main/resources/tips/SurroundWith.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/SurroundWith.html -------------------------------------------------------------------------------- /src/main/resources/tips/Switcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/Switcher.html -------------------------------------------------------------------------------- /src/main/resources/tips/TabInEditorClose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/TabInEditorClose.html -------------------------------------------------------------------------------- /src/main/resources/tips/TabInLookups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/TabInLookups.html -------------------------------------------------------------------------------- /src/main/resources/tips/TagNameCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/TagNameCompletion.html -------------------------------------------------------------------------------- /src/main/resources/tips/Terminal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/Terminal.html -------------------------------------------------------------------------------- /src/main/resources/tips/TerminalOpen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/TerminalOpen.html -------------------------------------------------------------------------------- /src/main/resources/tips/UploadSshKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/UploadSshKey.html -------------------------------------------------------------------------------- /src/main/resources/tips/VariableNameCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/VariableNameCompletion.html -------------------------------------------------------------------------------- /src/main/resources/tips/VcsQuickList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/VcsQuickList.html -------------------------------------------------------------------------------- /src/main/resources/tips/Welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/Welcome.html -------------------------------------------------------------------------------- /src/main/resources/tips/WideScreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/WideScreen.html -------------------------------------------------------------------------------- /src/main/resources/tips/WildcardsInNavigationPopups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/WildcardsInNavigationPopups.html -------------------------------------------------------------------------------- /src/main/resources/tips/WordCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/WordCompletion.html -------------------------------------------------------------------------------- /src/main/resources/tips/css/tips.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/css/tips.css -------------------------------------------------------------------------------- /src/main/resources/tips/css/tips_darcula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/css/tips_darcula.css -------------------------------------------------------------------------------- /src/main/resources/tips/excluded/CopyWithNoSelection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/excluded/CopyWithNoSelection.html -------------------------------------------------------------------------------- /src/main/resources/tips/excluded/CtrlPgUpInCommander.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/excluded/CtrlPgUpInCommander.html -------------------------------------------------------------------------------- /src/main/resources/tips/excluded/CtrlShiftF4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/excluded/CtrlShiftF4.html -------------------------------------------------------------------------------- /src/main/resources/tips/excluded/DisableAutopopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/excluded/DisableAutopopup.html -------------------------------------------------------------------------------- /src/main/resources/tips/excluded/ExportUsageTree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/excluded/ExportUsageTree.html -------------------------------------------------------------------------------- /src/main/resources/tips/excluded/F12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/excluded/F12.html -------------------------------------------------------------------------------- /src/main/resources/tips/excluded/InsertInCommander.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/excluded/InsertInCommander.html -------------------------------------------------------------------------------- /src/main/resources/tips/excluded/Move.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/excluded/Move.html -------------------------------------------------------------------------------- /src/main/resources/tips/excluded/SmartEnd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/excluded/SmartEnd.html -------------------------------------------------------------------------------- /src/main/resources/tips/images/CodeCompletionInSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/CodeCompletionInSearch.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/PostfixCompletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/PostfixCompletion.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/PostfixCompletion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/PostfixCompletion@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/PostfixCompletion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/PostfixCompletion_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/RunConfigFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/RunConfigFolder.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/RunConfigFolder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/RunConfigFolder@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/RunConfigFolder_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/RunConfigFolder_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/SSHKeyUpload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/SSHKeyUpload.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/alt_insert_in_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/alt_insert_in_editor.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/annotationShowDiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/annotationShowDiff.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/annotationShowDiff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/annotationShowDiff@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/ant_property_intention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/ant_property_intention.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/ant_target_intention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/ant_target_intention.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/apply_signature_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/apply_signature_change.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrayMember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrayMember.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrayMember@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrayMember@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrayMember@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrayMember@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrayMember_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrayMember_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrow.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrow@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrow@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrow@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrowLeftDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrowLeftDown.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrowLeftDown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrowLeftDown@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrowLeftDown@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrowLeftDown@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrowLeftDown_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrowLeftDown_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrowRight.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrowRight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrowRight@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrowRight@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrowRight@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrowRightDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrowRightDown.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrowRightDown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrowRightDown@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrowRightDown@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrowRightDown@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrowRightDown_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrowRightDown_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrowRight_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrowRight_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/arrow_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/arrow_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/aslist_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/aslist_after.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/aslist_after@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/aslist_after@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/aslist_after@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/aslist_after@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/aslist_after_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/aslist_after_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/aslist_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/aslist_before.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/aslist_before@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/aslist_before@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/aslist_before@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/aslist_before@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/aslist_before_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/aslist_before_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/bookmarks1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/bookmarks1.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/bookmarks1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/bookmarks1@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/bookmarks1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/bookmarks1@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/bookmarks1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/bookmarks1_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/breakpoint_speedmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/breakpoint_speedmenu.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/bullet.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/camel_completion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/camel_completion.gif -------------------------------------------------------------------------------- /src/main/resources/tips/images/camel_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/camel_completion.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/camel_completion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/camel_completion@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/camel_completion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/camel_completion_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/camel_goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/camel_goto.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/camel_goto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/camel_goto@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/camel_goto@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/camel_goto@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/camel_goto_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/camel_goto_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/chain_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/chain_after.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/changeLookupSorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/changeLookupSorting.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/changeLookupSorting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/changeLookupSorting@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/checkRegExp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/checkRegExp.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/checkRegExp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/checkRegExp@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/checkRegExp@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/checkRegExp@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/checkRegExp_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/checkRegExp_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/close1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/close1.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/close_others.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/close_others.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/close_others@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/close_others@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/close_others@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/close_others@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/close_others_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/close_others_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/closing_tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/closing_tags.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/closing_tags@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/closing_tags@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/closing_tags@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/closing_tags@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/closing_tags_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/closing_tags_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/code_completion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/code_completion.gif -------------------------------------------------------------------------------- /src/main/resources/tips/images/code_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/code_completion.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/code_completion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/code_completion@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/code_completion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/code_completion_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/code_completion_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/code_completion_middle.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/coloredFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/coloredFiles.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/coloredFiles@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/coloredFiles@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/coloredFiles@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/coloredFiles@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/coloredFiles_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/coloredFiles_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/columnSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/columnSelection.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/columnSelection@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/columnSelection@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/columnSelection_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/columnSelection_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/complete_statement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/complete_statement.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/complete_statement@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/complete_statement@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/completionImportStatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/completionImportStatic.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/completion_in_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/completion_in_html.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/completion_in_html2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/completion_in_html2.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/completion_in_html2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/completion_in_html2@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/completion_in_html@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/completion_in_html@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/copy_rich_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/copy_rich_text.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/copy_rich_text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/copy_rich_text@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/copy_rich_text@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/copy_rich_text@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/copy_rich_text_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/copy_rich_text_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/createTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/createTest.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/createTest@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/createTest@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/createTest@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/createTest@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/createTest_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/createTest_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/cssColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/cssColor.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/cssColor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/cssColor@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/cssColor@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/cssColor@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/cssColor_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/cssColor_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/ctrl_click.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/ctrl_click.gif -------------------------------------------------------------------------------- /src/main/resources/tips/images/ctrl_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/ctrl_click.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/ctrl_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/ctrl_click@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/ctrl_click@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/ctrl_click@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/ctrl_click_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/ctrl_click_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/ctrl_shift_i.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/ctrl_shift_i.gif -------------------------------------------------------------------------------- /src/main/resources/tips/images/ctrl_shift_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/ctrl_shift_i.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/ctrl_shift_i@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/ctrl_shift_i@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/ctrl_shift_i@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/ctrl_shift_i@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/ctrl_shift_i_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/ctrl_shift_i_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/ctrl_shift_i_lookup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/ctrl_shift_i_lookup.gif -------------------------------------------------------------------------------- /src/main/resources/tips/images/ctrl_shift_in_lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/ctrl_shift_in_lookup.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/dragToOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/dragToOpen.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/dragToOpen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/dragToOpen@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/dragToOpen@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/dragToOpen@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/dragToOpen_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/dragToOpen_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/editregexp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/editregexp.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/editregexp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/editregexp@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/editregexp@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/editregexp@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/editregexp_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/editregexp_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/emmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/emmet.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/emmet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/emmet@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/emmet@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/emmet@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/emmet_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/emmet_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/enterDirectory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/enterDirectory.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/enterDirectory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/enterDirectory@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/enterDirectory@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/enterDirectory@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/enterDirectory_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/enterDirectory_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/external_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/external_file.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/find_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/find_action.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/find_action@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/find_action@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/find_action@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/find_action@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/find_action_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/find_action_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/fix_doc_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/fix_doc_comment.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/fix_doc_comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/fix_doc_comment@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/fix_doc_comment_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/fix_doc_comment_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/gotoFileLineNumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/gotoFileLineNumber.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/gotoFileLineNumber@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/gotoFileLineNumber@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/goto_class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/goto_class.gif -------------------------------------------------------------------------------- /src/main/resources/tips/images/goto_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/goto_class.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/goto_class@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/goto_class@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/goto_class@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/goto_class@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/goto_class_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/goto_class_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/goto_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/goto_file.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/goto_file@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/goto_file@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/goto_file@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/goto_file@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/goto_file_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/goto_file_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/goto_symbol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/goto_symbol.gif -------------------------------------------------------------------------------- /src/main/resources/tips/images/goto_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/goto_symbol.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/goto_symbol@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/goto_symbol@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/goto_symbol@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/goto_symbol@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/goto_symbol_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/goto_symbol_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/hierarchy_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/hierarchy_browser.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/hierarchy_browser@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/hierarchy_browser@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/hierarchy_browser_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/hierarchy_browser_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/highlightExceptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/highlightExceptions.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/highlightExceptions@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/highlightExceptions@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/highlightImplemented.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/highlightImplemented.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/hippie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/hippie.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/hippie@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/hippie@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/hippie@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/hippie@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/hippie_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/hippie_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/image_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/image_completion.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/image_completion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/image_completion@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/image_completion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/image_completion_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/image_lookup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/image_lookup.gif -------------------------------------------------------------------------------- /src/main/resources/tips/images/image_lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/image_lookup.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/image_lookup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/image_lookup@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/image_lookup@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/image_lookup@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/image_lookup_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/image_lookup_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/insert_live_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/insert_live_template.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/inspection_by_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/inspection_by_name.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/inspection_by_name@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/inspection_by_name@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/introduce_variable_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/introduce_variable_1.gif -------------------------------------------------------------------------------- /src/main/resources/tips/images/introduce_variable_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/introduce_variable_1.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/introduce_variable_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/introduce_variable_2.gif -------------------------------------------------------------------------------- /src/main/resources/tips/images/introduce_variable_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/introduce_variable_2.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/issueNavigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/issueNavigation.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/issueNavigation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/issueNavigation1.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/issueNavigation1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/issueNavigation1@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/issueNavigation1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/issueNavigation1_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/issueNavigation_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/issueNavigation_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/lens.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/lens1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/lens1.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/lens1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/lens1@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/lens1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/lens1@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/lens1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/lens1_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/lens@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/lens@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/lens@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/lens@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/lens_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/lens_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/line_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/line_separator.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/line_separator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/line_separator@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/line_separator@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/line_separator@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/line_separator_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/line_separator_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/line_separator_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/line_separator_folder.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/live_templates_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/live_templates_1.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/live_templates_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/live_templates_1@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/live_templates_1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/live_templates_1_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/live_templates_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/live_templates_2.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/live_templates_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/live_templates_2@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/live_templates_2_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/live_templates_2_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/methodExitPoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/methodExitPoints.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/methodExitPoints@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/methodExitPoints@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/method_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/method_separator.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/method_separator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/method_separator@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/method_separator_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/method_separator_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/missing_images.txt: -------------------------------------------------------------------------------- 1 | goto_symbol.gif - a snapshot of Ctrl+Alt+Shift+N feature. 2 | -------------------------------------------------------------------------------- /src/main/resources/tips/images/move_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/move_inner.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/move_inner@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/move_inner@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/move_inner@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/move_inner@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/move_inner_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/move_inner_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/move_to_changelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/move_to_changelist.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/move_to_changelist@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/move_to_changelist@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/multicursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/multicursor.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/multicursor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/multicursor1.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/multicursor1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/multicursor1@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/multicursor1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/multicursor1@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/multicursor1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/multicursor1_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/multicursor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/multicursor@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/multicursor@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/multicursor@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/multicursor_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/multicursor_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/multiselection2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/multiselection2.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/multiselection2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/multiselection2@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/multiselection2_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/multiselection2_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/multiselection_column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/multiselection_column.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/multiselection_words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/multiselection_words.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/navigateToFilePath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/navigateToFilePath.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/navigateToFilePath@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/navigateToFilePath@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/navigationbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/navigationbar.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/navigationbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/navigationbar@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/navigationbar@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/navigationbar@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/navigationbar_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/navigationbar_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/param_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/param_info.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/param_info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/param_info@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/param_info@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/param_info@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/param_info_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/param_info_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/parm_info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/parm_info.gif -------------------------------------------------------------------------------- /src/main/resources/tips/images/properties_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/properties_completion.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/qdoc_live_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/qdoc_live_template.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/qdoc_live_template@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/qdoc_live_template@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/quick_evaluate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/quick_evaluate.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/quick_fix_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/quick_fix_options.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/quick_fix_options@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/quick_fix_options@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/quick_fix_options_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/quick_fix_options_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/quick_javadoc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/quick_javadoc.gif -------------------------------------------------------------------------------- /src/main/resources/tips/images/quick_javadoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/quick_javadoc.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/quick_javadoc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/quick_javadoc@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/quick_javadoc@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/quick_javadoc@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/quick_javadoc_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/quick_javadoc_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/quick_switch_scheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/quick_switch_scheme.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/quick_switch_scheme@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/quick_switch_scheme@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/quickdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/quickdoc.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/quickdoc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/quickdoc@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/quickdoc@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/quickdoc@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/quickdoc_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/quickdoc_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recentSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recentSearch.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recentSearch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recentSearch@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recentSearch@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recentSearch@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recentSearch_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recentSearch_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recent_changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recent_changes.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recent_changes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recent_changes@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recent_changes@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recent_changes@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recent_changes_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recent_changes_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recent_files_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recent_files_1.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recent_files_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recent_files_1@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recent_files_1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recent_files_1@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recent_files_1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recent_files_1_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recent_files_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recent_files_2.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recent_files_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recent_files_2@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recent_files_2@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recent_files_2@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/recent_files_2_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/recent_files_2_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/refactor_this.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/refactor_this.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/refactor_this@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/refactor_this@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/refactor_this@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/refactor_this@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/refactor_this_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/refactor_this_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/reference_copied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/reference_copied.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/reference_copied@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/reference_copied@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/reference_copied_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/reference_copied_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/reference_pasted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/reference_pasted.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/reference_pasted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/reference_pasted@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/reference_pasted_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/reference_pasted_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/remove.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/remove@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/remove@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/remove@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/remove@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/remove_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/remove_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/remove_from_sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/remove_from_sidebar.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/remove_from_sidebar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/remove_from_sidebar@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/rename.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/rename@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/rename@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/rename@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/rename@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/rename_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/rename_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/resource_bundle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/resource_bundle_1.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/resource_bundle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/resource_bundle_2.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/scratch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/scratch.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/scratch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/scratch@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/scratch@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/scratch@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/scratch_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/scratch_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/scratches_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/scratches_view.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/scratches_view@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/scratches_view@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/scratches_view@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/scratches_view@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/scratches_view_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/scratches_view_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/searchEverywhere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/searchEverywhere.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/searchEverywhere@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/searchEverywhere@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/searchEverywhere_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/searchEverywhere_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/searchEverywhere_lense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/searchEverywhere_lense.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/search_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/search_settings.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/search_settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/search_settings@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/search_settings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/search_settings_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/second_code_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/second_code_completion.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/select_in.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/select_in.gif -------------------------------------------------------------------------------- /src/main/resources/tips/images/select_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/select_in.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/select_in@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/select_in@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/select_in@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/select_in@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/select_in_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/select_in_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/select_tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/select_tasks.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/select_tasks@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/select_tasks@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/select_tasks@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/select_tasks@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/select_tasks_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/select_tasks_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/showUsages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/showUsages.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/showUsages@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/showUsages@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/showUsages@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/showUsages@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/showUsages_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/showUsages_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/show_applied_styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/show_applied_styles.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/show_applied_styles@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/show_applied_styles@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/sidebyside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/sidebyside.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/sidebyside@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/sidebyside@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/sidebyside@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/sidebyside@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/sidebyside_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/sidebyside_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/smart_type_after_new_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/smart_type_after_new_1.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/smart_type_after_new_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/smart_type_after_new_2.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/speed_search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/speed_search.gif -------------------------------------------------------------------------------- /src/main/resources/tips/images/speed_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/speed_search.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/speed_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/speed_search@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/speed_search@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/speed_search@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/speed_search_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/speed_search_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/surround_with.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/surround_with.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/surround_with@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/surround_with@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/surround_with@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/surround_with@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/surround_with_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/surround_with_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/switcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/switcher.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/switcher@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/switcher@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/switcher@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/switcher@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/switcher_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/switcher_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/tagNameCompletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/tagNameCompletion.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/tagNameCompletion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/tagNameCompletion@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/tagNameCompletion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/tagNameCompletion_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/terminal.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/terminal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/terminal@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/terminal@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/terminal@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/terminal_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/terminal_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/toar_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/toar_after.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/toar_after@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/toar_after@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/toar_after@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/toar_after@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/toar_after_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/toar_after_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/toar_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/toar_before.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/toar_before@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/toar_before@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/toar_before@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/toar_before@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/toar_before_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/toar_before_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/todo_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/todo_preview.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/todo_preview@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/todo_preview@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/todo_preview@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/todo_preview@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/todo_preview_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/todo_preview_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/todo_scopes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/todo_scopes.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/todo_scopes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/todo_scopes@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/todo_scopes@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/todo_scopes@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/todo_scopes_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/todo_scopes_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/vcsQuickList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/vcsQuickList.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/vcsQuickList@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/vcsQuickList@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/vcsQuickList@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/vcsQuickList@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/vcsQuickList_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/vcsQuickList_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/wildcard_goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/wildcard_goto.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/wildcard_goto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/wildcard_goto@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/wildcard_goto@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/wildcard_goto@2x_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/wildcard_goto_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/wildcard_goto_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/word_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/word_completion.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/word_completion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/word_completion@2x.png -------------------------------------------------------------------------------- /src/main/resources/tips/images/word_completion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/images/word_completion_dark.png -------------------------------------------------------------------------------- /src/main/resources/tips/moveFileToChangelist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/moveFileToChangelist.html -------------------------------------------------------------------------------- /src/main/resources/tips/todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelliJ-Localization/ij_resources_cn/HEAD/src/main/resources/tips/todo.html --------------------------------------------------------------------------------