├── README.md ├── images ├── screen-01.jpg ├── screen-02.jpg └── screen-03.jpg ├── package.cmd └── resources_en ├── META-INF └── MANIFEST.MF ├── RuntimeBundle.properties ├── RuntimeBundle_zh_CN.properties ├── RuntimeBundle_zh_TW.properties ├── com └── intellij │ ├── dvcs │ └── ui │ │ ├── DvcsBundle.properties │ │ ├── DvcsBundle_zh_CN.properties │ │ └── DvcsBundle_zh_TW.properties │ ├── tasks │ ├── TaskBundle.properties │ ├── TaskBundle_zh_CN.properties │ └── TaskBundle_zh_TW.properties │ ├── util │ ├── UltimateFeaturesBundle.properties │ ├── UltimateFeaturesBundle_zh_CN.properties │ └── UltimateFeaturesBundle_zh_TW.properties │ └── webcore │ ├── WebCoreBundle.properties │ ├── WebCoreBundle_zh_CN.properties │ └── WebCoreBundle_zh_TW.properties ├── fileTemplates └── internal │ ├── HTML File.html.ft │ ├── HTML4 File.html.ft │ └── XHTML File.xhtml.ft ├── i18n ├── ExternalSystemBundle.properties ├── ExternalSystemBundle_zh_CN.properties └── ExternalSystemBundle_zh_TW.properties ├── inspectionDescriptions ├── AlphaUnsortedPropertiesFile.html ├── Annotator.html ├── BlockingMethodInNonBlockingContext.html ├── CheckDtdRefs.html ├── CheckEmptyScriptTag.html ├── CheckTagEmptyBody.html ├── CheckValidXmlInScriptTagBody.html ├── CheckXmlFileWithXercesValidator.html ├── HtmlExtraClosingTag.html ├── HtmlMissingClosingTag.html ├── HtmlUnknownAnchorTarget.html ├── HtmlUnknownAttribute.html ├── HtmlUnknownBooleanAttribute.html ├── HtmlUnknownTag.html ├── HtmlUnknownTarget.html ├── IgnoreFileDuplicateEntry.html ├── InconsistentLineSeparators.html ├── JavacQuirks.html ├── LongLine.html ├── LossyEncoding.html ├── NonAsciiCharacters.html ├── ObjectsEqualsCanBeSimplified.html ├── ProblematicWhitespace.html ├── ReDoS.html ├── RedundantSuppression.html ├── RegExpAnonymousGroup.html ├── RegExpDuplicateAlternationBranch.html ├── RegExpEmptyAlternationBranch.html ├── RegExpEscapedMetaCharacter.html ├── RegExpOctalEscape.html ├── RegExpRedundantEscape.html ├── RegExpRepeatedSpace.html ├── RegExpSingleCharAlternation.html ├── RegExpUnexpectedAnchor.html ├── RequiredAttributes.html ├── SSBasedInspection.html ├── SyntaxError.html ├── TodoComment.html ├── UnresolvedReference.html ├── UnusedDefine.html ├── WrongPropertyKeyValueDelimiter.html ├── XmlDefaultAttributeValue.html ├── XmlDeprecatedElement.html ├── XmlDuplicatedId.html ├── XmlHighlighting.html ├── XmlInvalidId.html ├── XmlPathReference.html ├── XmlUnboundNsPrefix.html ├── XmlUnusedNamespaceDeclaration.html └── XmlWrongRootElement.html ├── intentionDescriptions ├── AddSchemaPrefixIntention │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── AddXsiSchemaLocationForExtResourceAction │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── CDataToTextIntention │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── CheckRegExpIntentionAction │ ├── after.java.template │ ├── before.java.template │ └── description.html ├── CollapseTagIntention │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── ConfigureCodeStyleOnSelectedFragment │ ├── after.txt.template │ ├── before.txt.template │ └── description.html ├── ConvertSchemaPrefixToDefaultIntention │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── FetchExtResourceAction │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── FlipCommaIntention │ ├── after.sql.template │ ├── before.sql.template │ └── description.html ├── ManuallySetupExtResourceAction │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── QuickEditAction │ ├── after.txt.template │ ├── before.txt.template │ └── description.html ├── RearrangeAttributesIntention │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── RemoveAttributeIntentionFix │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── RemoveTagAndPromoteChildrenIntentionAction │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── TextToCDataIntention │ ├── after.xml.template │ ├── before.xml.template │ └── description.html ├── XmlChooseColorIntentionAction │ ├── after.xml.template │ ├── before.xml.template │ └── description.html └── XmlSplitTagAction │ ├── after.html.template │ ├── before.html.template │ └── description.html ├── messages ├── ActionsBundle.properties ├── ActionsBundle_zh_CN.properties ├── ActionsBundle_zh_TW.properties ├── AnalysisScopeBundle.properties ├── AnalysisScopeBundle_zh_CN.properties ├── AnalysisScopeBundle_zh_TW.properties ├── ApplicationBundle.properties ├── ApplicationBundle_zh_CN.properties ├── ApplicationBundle_zh_TW.properties ├── CodeEditorBundle.properties ├── CodeEditorBundle_zh_CN.properties ├── CodeEditorBundle_zh_TW.properties ├── CodeInsightBundle.properties ├── CodeInsightBundle_zh_CN.properties ├── CodeInsightBundle_zh_TW.properties ├── CommonBundle.properties ├── CommonBundle_zh_CN.properties ├── CommonBundle_zh_TW.properties ├── CommonQuickFixBundle.properties ├── DaemonBundle.properties ├── DaemonBundle_zh_CN.properties ├── DaemonBundle_zh_TW.properties ├── DesignerBundle.properties ├── DesignerBundle_zh_CN.properties ├── DesignerBundle_zh_TW.properties ├── DiagnosticBundle.properties ├── DiagnosticBundle_zh_CN.properties ├── DiagnosticBundle_zh_TW.properties ├── DiffBundle.properties ├── DiffBundle_zh_CN.properties ├── DiffBundle_zh_TW.properties ├── DomBundle.properties ├── DomBundle_zh_CN.properties ├── DomBundle_zh_TW.properties ├── DupLocatorBundle.properties ├── DupLocatorBundle_zh_CN.properties ├── DupLocatorBundle_zh_TW.properties ├── EditorBundle.properties ├── EditorBundle_zh_CN.properties ├── EditorBundle_zh_TW.properties ├── ExecutionBundle.properties ├── ExecutionBundle_zh_CN.properties ├── ExecutionBundle_zh_TW.properties ├── FeatureStatisticsBundle.properties ├── FeatureStatisticsBundle_zh_CN.properties ├── FeatureStatisticsBundle_zh_TW.properties ├── FileTypesBundle.properties ├── FileTypesBundle_zh_CN.properties ├── FileTypesBundle_zh_TW.properties ├── FindBundle.properties ├── FindBundle_zh_CN.properties ├── FindBundle_zh_TW.properties ├── GraphBundle.properties ├── GraphBundle_zh_CN.properties ├── GraphBundle_zh_TW.properties ├── IdeBundle.properties ├── IdeBundle_zh_CN.properties ├── IdeBundle_zh_TW.properties ├── InspectionsBundle.properties ├── InspectionsBundle_zh_CN.properties ├── InspectionsBundle_zh_TW.properties ├── KeyMapBundle.properties ├── KeyMapBundle_zh_CN.properties ├── KeyMapBundle_zh_TW.properties ├── LangBundle.properties ├── LangBundle_zh_CN.properties ├── LangBundle_zh_TW.properties ├── LicenseCommonBundle.properties ├── LicenseCommonBundle_zh_CN.properties ├── LicenseCommonBundle_zh_TW.properties ├── LocalHistoryBundle.properties ├── LocalHistoryBundle_zh_CN.properties ├── LocalHistoryBundle_zh_TW.properties ├── OptionsBundle.properties ├── OptionsBundle_zh_CN.properties ├── OptionsBundle_zh_TW.properties ├── ProjectBundle.properties ├── ProjectBundle_zh_CN.properties ├── ProjectBundle_zh_TW.properties ├── PsiBundle.properties ├── PsiBundle_zh_CN.properties ├── PsiBundle_zh_TW.properties ├── RefactoringBundle.properties ├── RefactoringBundle_zh_CN.properties ├── RefactoringBundle_zh_TW.properties ├── SMTestsRunnerBundle.properties ├── SMTestsRunnerBundle_zh_CN.properties ├── SMTestsRunnerBundle_zh_TW.properties ├── SSRBundle.properties ├── SSRBundle_zh_CN.properties ├── SSRBundle_zh_TW.properties ├── SshBundle.properties ├── SshBundle_zh_CN.properties ├── SshBundle_zh_TW.properties ├── StatisticsBundle.properties ├── StatisticsBundle_zh_CN.properties ├── StatisticsBundle_zh_TW.properties ├── ToolsBundle.properties ├── ToolsBundle_zh_CN.properties ├── ToolsBundle_zh_TW.properties ├── UIBundle.properties ├── UIBundle_zh_CN.properties ├── UIBundle_zh_TW.properties ├── UsageView.properties ├── UsageView_zh_CN.properties ├── UsageView_zh_TW.properties ├── VcsBundle.properties ├── VcsBundle_zh_CN.properties ├── VcsBundle_zh_TW.properties ├── VfsBundle.properties ├── VfsBundle_zh_CN.properties ├── VfsBundle_zh_TW.properties ├── XDebuggerBundle.properties ├── XDebuggerBundle_zh_CN.properties ├── XDebuggerBundle_zh_TW.properties ├── XmlBundle.properties ├── XmlBundle_zh_CN.properties ├── XmlBundle_zh_TW.properties ├── XmlDuplicates.properties ├── XmlErrorMessages.properties ├── XmlErrorMessages_zh_CN.properties └── XmlErrorMessages_zh_TW.properties ├── search ├── ignore.txt ├── intellij.phpstorm.searchableOptions.xml ├── intellij.platform.builtInServer.impl.searchableOptions.xml ├── intellij.platform.commercial.searchableOptions.xml ├── intellij.platform.coverage.searchableOptions.xml ├── intellij.platform.debugger.impl.searchableOptions.xml ├── intellij.platform.diff.impl.searchableOptions.xml ├── intellij.platform.duplicates.searchableOptions.xml ├── intellij.platform.duplicatesDetector.searchableOptions.xml ├── intellij.platform.externalSystem.impl.searchableOptions.xml ├── intellij.platform.graph.impl.searchableOptions.xml ├── intellij.platform.graph.searchableOptions.xml ├── intellij.platform.ide.impl.searchableOptions.xml ├── intellij.platform.ide.searchableOptions.xml ├── intellij.platform.lang.impl.searchableOptions.xml ├── intellij.platform.lang.searchableOptions.xml ├── intellij.platform.lvcs.impl.searchableOptions.xml ├── intellij.platform.remoteServers.impl.searchableOptions.xml ├── intellij.platform.smRunner.searchableOptions.xml ├── intellij.platform.structuralSearch.searchableOptions.xml ├── intellij.platform.testRunner.searchableOptions.xml ├── intellij.platform.usageView.searchableOptions.xml ├── intellij.platform.vcs.dvcs.impl.searchableOptions.xml ├── intellij.platform.vcs.impl.searchableOptions.xml ├── intellij.platform.vcs.log.impl.searchableOptions.xml ├── intellij.platform.vcs.searchableOptions.xml ├── intellij.platform.webide.impl.searchableOptions.xml ├── intellij.regexp.searchableOptions.xml ├── intellij.relaxng.searchableOptions.xml ├── intellij.xml.dom.impl.searchableOptions.xml ├── intellij.xml.dom.searchableOptions.xml ├── intellij.xml.impl.searchableOptions.xml └── synonyms.xml └── tips ├── AltInsertInEditor.html ├── AnnotationsAndDiffs.html ├── Antivirus.html ├── BreakpointSpeedmenu.html ├── BuiltInServer.html ├── CamelHumpsInCodeCompletion.html ├── CamelPrefixesInNavigationPopups.html ├── CancelByControlArrows.html ├── ChangeSorting.html ├── ChangesView.html ├── CheckRegExp.html ├── ClipboardStack.html ├── CloseOthers.html ├── ClosingTag.html ├── CodeCompletion.html ├── CodeCompletionInSearch.html ├── CodeCompletionMiddle.html ├── CodeCompletionNoShift.html ├── ColorEditingInCss.html ├── ColorFiles.html ├── ColumnSelection.html ├── CommentCode.html ├── CommitCtrlK.html ├── Compare.html ├── CompleteStatement.html ├── CompletionInHTML.html ├── ConfiguringTerminal.html ├── CopyPasteReference.html ├── CopyWithNoSelection.html ├── CtrlD.html ├── CtrlDotInLookups.html ├── CtrlShiftI.html ├── CtrlShiftIForLookup.html ├── CtrlW.html ├── DDDisable.html ├── DeleteLine.html ├── DiagramShow.html ├── DiagramShowDiff.html ├── DiagramShowPopup.html ├── DiffChevron.html ├── DirDiff.html ├── DotEtcInLookups.html ├── DragToOpen.html ├── EditRegExp.html ├── Emmet.html ├── EnterDirectoryInGotoFile.html ├── Escape.html ├── EvaluateExpressionInEditor.html ├── ExcludeFromProject.html ├── ExternalJavaDoc.html ├── FavoritesToolWindow1.html ├── FavoritesToolWindow2.html ├── FileStructurePopup.html ├── FileWatchersInspection.html ├── FindInPath.html ├── FindReplaceToggle.html ├── FindUsages.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 ├── Html5Outline.html ├── ImageFileCompletion.html ├── ImagesLookup.html ├── InlineVariable.html ├── InsertLiveTemplate.html ├── InspectCode.html ├── IntroduceConstant.html ├── IntroduceVariable.html ├── IssueNavigation.html ├── JoinLines.html ├── JumpToLastEdit.html ├── LayoutCode.html ├── LensMode.html ├── LineEndings.html ├── LineEndingsFolder.html ├── LiveTemplates.html ├── LiveTemplatesRestore.html ├── LocalVCS.html ├── MenuItemsDescriptions.html ├── MethodSeparators.html ├── MethodUpDown.html ├── MoveToChangelist.html ├── MoveUpDown.html ├── Multicursor.html ├── Multicursor1.html ├── Multiselection1.html ├── Multiselection2.html ├── MultiselectionInSearch.html ├── MultiselectionInSearch1.html ├── MultiselectionWords.html ├── NamedBreakpoints.html ├── NavBar.html ├── NavigateToFilePath.html ├── NextPrevError.html ├── OverrideImplementMethods.html ├── ParameterInfo.html ├── PharDiff.html ├── PostfixCompletion.html ├── PreviewTODO.html ├── PrintKeywords.html ├── QuickDocInSuggestionList.html ├── QuickDocOnMouseMove.html ├── QuickEvaluateExpression.html ├── QuickFixRightArrow.html ├── QuickJavaDoc.html ├── QuickJavaDocInLookups.html ├── QuickSwitchScheme.html ├── RecentChanges.html ├── RecentFiles.html ├── RecentSearch.html ├── RefactorThis.html ├── RemoteInterpreter.html ├── RemoveToolWindowButton.html ├── Rename.html ├── RenameCssSelector.html ├── Reopen.html ├── RichTextCopy.html ├── RunConfigFolders.html ├── ScopesInTODO.html ├── Scratch.html ├── ScratchesView.html ├── SearchEverywhere.html ├── SearchInSettings.html ├── SecondBasicClassNameCompletion.html ├── SelectIn.html ├── SelectRunDebugConfiguration.html ├── SelectTasks.html ├── ShowAppliedStyles.html ├── ShowHideSideBars.html ├── ShowUsages.html ├── SmartTypeAfterNew.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 ├── ToolWindowsQuickAccess.html ├── UploadSshKey.html ├── VariableNameCompletion.html ├── VcsQuickList.html ├── ViewInBrowser.html ├── Welcome.html ├── WideScreen.html ├── WildcardsInNavigationPopups.html ├── WordCompletion.html ├── css ├── tips.css └── tips_darcula.css ├── images ├── ChangesView.png ├── ChangesView@2x.png ├── ChangesView@2x_dark.png ├── ChangesView_dark.png ├── CodeCompletionInSearch.png ├── CodeCompletionInSearch@2x.png ├── CodeCompletionInSearch@2x_dark.png ├── CodeCompletionInSearch_dark.png ├── LiveTemplatesRestore.png ├── LiveTemplatesRestore@2x.png ├── LiveTemplatesRestore@2x_dark.png ├── LiveTemplatesRestore_dark.png ├── PostfixCompletion.png ├── PostfixCompletion@2x.png ├── PostfixCompletion@2x_dark.png ├── PostfixCompletion_dark.png ├── RenameCssSelector.png ├── RenameCssSelector@2x.png ├── RenameCssSelector@2x_dark.png ├── RenameCssSelector_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 ├── address_bar_local.png ├── address_bar_local@2x.png ├── address_bar_remote.png ├── address_bar_remote@2x.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 ├── 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 ├── 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 ├── browser_icons.png ├── browser_icons@2x.png ├── browser_icons@2x_dark.png ├── browser_icons_dark.png ├── builtInServer.png ├── builtInServer@2x.png ├── builtInServer@2x_dark.png ├── builtInServer_dark.png ├── bullet.png ├── 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 ├── 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.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_method.png ├── complete_method@2x.png ├── complete_method@2x_dark.png ├── complete_method_dark.png ├── complete_statement.png ├── complete_statement@2x.png ├── complete_statement@2x_dark.png ├── complete_statement_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 ├── cssColor.png ├── cssColor@2x.png ├── cssColor@2x_dark.png ├── cssColor_dark.png ├── ctrl_click.png ├── ctrl_click@2x.png ├── ctrl_click@2x_dark.png ├── ctrl_click_dark.png ├── ctrl_shift_i.png ├── ctrl_shift_i@2x.png ├── ctrl_shift_i@2x_dark.png ├── ctrl_shift_i_dark.png ├── ctrl_shift_i_lookup.png ├── ctrl_shift_i_lookup@2x.png ├── ctrl_shift_i_lookup@2x_dark.png ├── ctrl_shift_i_lookup_dark.png ├── ctrl_shift_in_lookup.png ├── ctrl_shift_in_lookup@2x.png ├── ctrl_shift_in_lookup@2x_dark.png ├── ctrl_shift_in_lookup_dark.png ├── dddisable.png ├── dddisable@2x.png ├── dddisable@2x_dark.png ├── dddisable_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 ├── external_file.png ├── extract_constant_1.png ├── extract_constant_1@2x.png ├── extract_constant_1@2x_dark.png ├── extract_constant_1_dark.png ├── extract_constant_2.png ├── extract_constant_2@2x.png ├── extract_constant_2@2x_dark.png ├── extract_constant_2_dark.png ├── fileStructurePopup.png ├── fileStructurePopup@2x.png ├── fileStructurePopup@2x_dark.png ├── fileStructurePopup_dark.png ├── file_watcher.png ├── file_watcher@2x.png ├── file_watcher@2x_dark.png ├── file_watcher_dark.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.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.png ├── goto_symbol@2x.png ├── goto_symbol@2x_dark.png ├── goto_symbol_dark.png ├── groups_of_breakpoints.png ├── groups_of_breakpoints@2x.png ├── groups_of_breakpoints@2x_dark.png ├── groups_of_breakpoints_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 ├── highlightImplemented_dark.png ├── hippie.png ├── hippie@2x.png ├── hippie@2x_dark.png ├── hippie_dark.png ├── html5_outline.png ├── html5_outline@2x.png ├── html5_outline@2x_dark.png ├── html5_outline_dark.png ├── icon-robots.txt ├── image_completion.png ├── image_completion@2x.png ├── image_completion@2x_dark.png ├── image_completion_dark.png ├── image_lookup.png ├── image_lookup@2x.png ├── image_lookup@2x_dark.png ├── image_lookup_dark.png ├── inline_variable_1.png ├── inline_variable_1@2x.png ├── inline_variable_1@2x_dark.png ├── inline_variable_1_dark.png ├── inline_variable_2.png ├── inline_variable_2@2x.png ├── inline_variable_2@2x_dark.png ├── inline_variable_2_dark.png ├── insert_live_template.png ├── insert_live_template@2x.png ├── insert_live_template@2x_dark.png ├── insert_live_template_dark.png ├── introduce_variable_1.png ├── introduce_variable_1@2x.png ├── introduce_variable_1@2x_dark.png ├── introduce_variable_1_dark.png ├── 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 ├── jumplist.png ├── jumplist@2x.png ├── jumplist@2x_dark.png ├── jumplist_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 ├── 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 ├── lower_left.png ├── methodExitPoints.png ├── methodExitPoints@2x.png ├── methodExitPoints@2x_dark.png ├── methodExitPoints_dark.png ├── method_separator.png ├── method_separator@2x.png ├── method_separator@2x_dark.png ├── method_separator_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 ├── multiselection.png ├── multiselection1.png ├── multiselection1@2x.png ├── multiselection1@2x_dark.png ├── multiselection1_dark.png ├── multiselection2.png ├── multiselection2@2x.png ├── multiselection2@2x_dark.png ├── multiselection2_dark.png ├── multiselection@2x.png ├── multiselection@2x_dark.png ├── multiselection_column.png ├── multiselection_column@2x.png ├── multiselection_column@2x_dark.png ├── multiselection_column_dark.png ├── multiselection_dark.png ├── multiselection_words.png ├── multiselection_words@2x.png ├── multiselection_words@2x_dark.png ├── multiselection_words_dark.png ├── named_breakpoint.png ├── named_breakpoint1.png ├── named_breakpoint1@2x.png ├── named_breakpoint1@2x_dark.png ├── named_breakpoint@2x.png ├── named_breakpoint@2x_dark.png ├── named_breakpoint_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 ├── qdoc_live_template.png ├── qdoc_live_template@2x.png ├── qdoc_live_template@2x_dark.png ├── qdoc_live_template_dark.png ├── quick_evaluate.png ├── quick_evaluate@2x.png ├── quick_evaluate@2x_dark.png ├── quick_evaluate_dark.png ├── quick_fix_options.png ├── quick_fix_options@2x.png ├── quick_fix_options@2x_dark.png ├── quick_fix_options_dark.png ├── quick_javadoc.png ├── quick_javadoc@2x.png ├── quick_javadoc@2x_dark.png ├── quick_javadoc_dark.png ├── 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 ├── 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 ├── remote.png ├── remote@2x.png ├── remote@2x_dark.png ├── remote_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 ├── reopen.png ├── reopen@2x.png ├── reopen@2x_dark.png ├── reopen_dark.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 ├── selectRunDebugConfiguration.png ├── selectRunDebugConfiguration@2x.png ├── selectRunDebugConfiguration@2x_dark.png ├── selectRunDebugConfiguration_dark.png ├── 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 ├── showDiagram.png ├── showDiagram@2x.png ├── showDiagram@2x_dark.png ├── showDiagramPopup.png ├── showDiagramPopup@2x.png ├── showDiagramPopup@2x_dark.png ├── showDiagramPopup_dark.png ├── showDiagram_dark.png ├── showDiffOnDiagram.png ├── showDiffOnDiagram.png.png ├── showDiffOnDiagram.png@2x.png ├── showDiffOnDiagram.png@2x_dark.png ├── showDiffOnDiagram.png_dark.png ├── showDiffOnDiagram@2x.png ├── showDiffOnDiagram@2x_dark.png ├── showDiffOnDiagram_dark.png ├── showToolWindows.png ├── showToolWindows@2x.png ├── showToolWindows@2x_dark.png ├── showToolWindows_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@2x_dark.png ├── sidebySide_dark.png ├── sidebyside.png ├── sidebyside1@2x.png ├── sidebyside1@2x_dark.png ├── sidebyside2@2x.png ├── sidebyside2@2x_dark.png ├── sidebyside@2x.png ├── smart_type_after_new.png ├── smart_type_after_new@2x.png ├── smart_type_after_new@2x_dark.png ├── smart_type_after_new_dark.png ├── smart_type_completion.png ├── smart_type_completion@2x.png ├── smart_type_completion@2x_dark.png ├── smart_type_completion_dark.png ├── 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 ├── 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 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/README.md -------------------------------------------------------------------------------- /images/screen-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/images/screen-01.jpg -------------------------------------------------------------------------------- /images/screen-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/images/screen-02.jpg -------------------------------------------------------------------------------- /images/screen-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/images/screen-03.jpg -------------------------------------------------------------------------------- /package.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/package.cmd -------------------------------------------------------------------------------- /resources_en/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /resources_en/RuntimeBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/RuntimeBundle.properties -------------------------------------------------------------------------------- /resources_en/RuntimeBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/RuntimeBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/RuntimeBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/RuntimeBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/com/intellij/dvcs/ui/DvcsBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/com/intellij/dvcs/ui/DvcsBundle.properties -------------------------------------------------------------------------------- /resources_en/com/intellij/tasks/TaskBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/com/intellij/tasks/TaskBundle.properties -------------------------------------------------------------------------------- /resources_en/fileTemplates/internal/HTML File.html.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/fileTemplates/internal/HTML File.html.ft -------------------------------------------------------------------------------- /resources_en/fileTemplates/internal/HTML4 File.html.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/fileTemplates/internal/HTML4 File.html.ft -------------------------------------------------------------------------------- /resources_en/fileTemplates/internal/XHTML File.xhtml.ft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/fileTemplates/internal/XHTML File.xhtml.ft -------------------------------------------------------------------------------- /resources_en/i18n/ExternalSystemBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/i18n/ExternalSystemBundle.properties -------------------------------------------------------------------------------- /resources_en/i18n/ExternalSystemBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/i18n/ExternalSystemBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/i18n/ExternalSystemBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/i18n/ExternalSystemBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/inspectionDescriptions/Annotator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/inspectionDescriptions/Annotator.html -------------------------------------------------------------------------------- /resources_en/inspectionDescriptions/CheckDtdRefs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/inspectionDescriptions/CheckDtdRefs.html -------------------------------------------------------------------------------- /resources_en/inspectionDescriptions/HtmlUnknownTag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/inspectionDescriptions/HtmlUnknownTag.html -------------------------------------------------------------------------------- /resources_en/inspectionDescriptions/JavacQuirks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/inspectionDescriptions/JavacQuirks.html -------------------------------------------------------------------------------- /resources_en/inspectionDescriptions/LongLine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/inspectionDescriptions/LongLine.html -------------------------------------------------------------------------------- /resources_en/inspectionDescriptions/LossyEncoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/inspectionDescriptions/LossyEncoding.html -------------------------------------------------------------------------------- /resources_en/inspectionDescriptions/ReDoS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/inspectionDescriptions/ReDoS.html -------------------------------------------------------------------------------- /resources_en/inspectionDescriptions/SyntaxError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/inspectionDescriptions/SyntaxError.html -------------------------------------------------------------------------------- /resources_en/inspectionDescriptions/TodoComment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/inspectionDescriptions/TodoComment.html -------------------------------------------------------------------------------- /resources_en/inspectionDescriptions/UnusedDefine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/inspectionDescriptions/UnusedDefine.html -------------------------------------------------------------------------------- /resources_en/inspectionDescriptions/XmlDuplicatedId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/inspectionDescriptions/XmlDuplicatedId.html -------------------------------------------------------------------------------- /resources_en/inspectionDescriptions/XmlHighlighting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/inspectionDescriptions/XmlHighlighting.html -------------------------------------------------------------------------------- /resources_en/inspectionDescriptions/XmlInvalidId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/inspectionDescriptions/XmlInvalidId.html -------------------------------------------------------------------------------- /resources_en/intentionDescriptions/CollapseTagIntention/after.xml.template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources_en/messages/ActionsBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/ActionsBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/ActionsBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/ActionsBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/ActionsBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/ActionsBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/AnalysisScopeBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/AnalysisScopeBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/ApplicationBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/ApplicationBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/ApplicationBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/ApplicationBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/ApplicationBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/ApplicationBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/CodeEditorBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/CodeEditorBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/CodeEditorBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/CodeEditorBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/CodeEditorBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/CodeEditorBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/CodeInsightBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/CodeInsightBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/CodeInsightBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/CodeInsightBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/CodeInsightBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/CodeInsightBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/CommonBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/CommonBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/CommonBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/CommonBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/CommonBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/CommonBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/CommonQuickFixBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/CommonQuickFixBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/DaemonBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DaemonBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/DaemonBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DaemonBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/DaemonBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DaemonBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/DesignerBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DesignerBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/DesignerBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DesignerBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/DesignerBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DesignerBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/DiagnosticBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DiagnosticBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/DiagnosticBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DiagnosticBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/DiagnosticBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DiagnosticBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/DiffBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DiffBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/DiffBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DiffBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/DiffBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DiffBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/DomBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DomBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/DomBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DomBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/DomBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DomBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/DupLocatorBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/DupLocatorBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/EditorBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/EditorBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/EditorBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/EditorBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/EditorBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/EditorBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/ExecutionBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/ExecutionBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/FileTypesBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/FileTypesBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/FindBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/FindBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/FindBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/FindBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/FindBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/FindBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/GraphBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/GraphBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/GraphBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/GraphBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/GraphBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/GraphBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/IdeBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/IdeBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/IdeBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/IdeBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/IdeBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/IdeBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/InspectionsBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/InspectionsBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/KeyMapBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/KeyMapBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/KeyMapBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/KeyMapBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/KeyMapBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/KeyMapBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/LangBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/LangBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/LangBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/LangBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/LangBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/LangBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/LicenseCommonBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/LicenseCommonBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/LocalHistoryBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/LocalHistoryBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/OptionsBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/OptionsBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/OptionsBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/OptionsBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/OptionsBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/OptionsBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/ProjectBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/ProjectBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/ProjectBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/ProjectBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/ProjectBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/ProjectBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/PsiBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/PsiBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/PsiBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/PsiBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/PsiBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/PsiBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/RefactoringBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/RefactoringBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/SMTestsRunnerBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/SMTestsRunnerBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/SSRBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/SSRBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/SSRBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/SSRBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/SSRBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/SSRBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/SshBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/SshBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/SshBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/SshBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/SshBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/SshBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/StatisticsBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/StatisticsBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/ToolsBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/ToolsBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/ToolsBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/ToolsBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/ToolsBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/ToolsBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/UIBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/UIBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/UIBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/UIBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/UIBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/UIBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/UsageView.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/UsageView.properties -------------------------------------------------------------------------------- /resources_en/messages/UsageView_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/UsageView_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/UsageView_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/UsageView_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/VcsBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/VcsBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/VcsBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/VcsBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/VcsBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/VcsBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/VfsBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/VfsBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/VfsBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/VfsBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/VfsBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/VfsBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/XDebuggerBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/XDebuggerBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/XmlBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/XmlBundle.properties -------------------------------------------------------------------------------- /resources_en/messages/XmlBundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/XmlBundle_zh_CN.properties -------------------------------------------------------------------------------- /resources_en/messages/XmlBundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/XmlBundle_zh_TW.properties -------------------------------------------------------------------------------- /resources_en/messages/XmlDuplicates.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/XmlDuplicates.properties -------------------------------------------------------------------------------- /resources_en/messages/XmlErrorMessages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/messages/XmlErrorMessages.properties -------------------------------------------------------------------------------- /resources_en/search/ignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/search/ignore.txt -------------------------------------------------------------------------------- /resources_en/search/synonyms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/search/synonyms.xml -------------------------------------------------------------------------------- /resources_en/tips/AltInsertInEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/AltInsertInEditor.html -------------------------------------------------------------------------------- /resources_en/tips/AnnotationsAndDiffs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/AnnotationsAndDiffs.html -------------------------------------------------------------------------------- /resources_en/tips/Antivirus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Antivirus.html -------------------------------------------------------------------------------- /resources_en/tips/BreakpointSpeedmenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/BreakpointSpeedmenu.html -------------------------------------------------------------------------------- /resources_en/tips/BuiltInServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/BuiltInServer.html -------------------------------------------------------------------------------- /resources_en/tips/CamelHumpsInCodeCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CamelHumpsInCodeCompletion.html -------------------------------------------------------------------------------- /resources_en/tips/CancelByControlArrows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CancelByControlArrows.html -------------------------------------------------------------------------------- /resources_en/tips/ChangeSorting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ChangeSorting.html -------------------------------------------------------------------------------- /resources_en/tips/ChangesView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ChangesView.html -------------------------------------------------------------------------------- /resources_en/tips/CheckRegExp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CheckRegExp.html -------------------------------------------------------------------------------- /resources_en/tips/ClipboardStack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ClipboardStack.html -------------------------------------------------------------------------------- /resources_en/tips/CloseOthers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CloseOthers.html -------------------------------------------------------------------------------- /resources_en/tips/ClosingTag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ClosingTag.html -------------------------------------------------------------------------------- /resources_en/tips/CodeCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CodeCompletion.html -------------------------------------------------------------------------------- /resources_en/tips/CodeCompletionInSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CodeCompletionInSearch.html -------------------------------------------------------------------------------- /resources_en/tips/CodeCompletionMiddle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CodeCompletionMiddle.html -------------------------------------------------------------------------------- /resources_en/tips/CodeCompletionNoShift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CodeCompletionNoShift.html -------------------------------------------------------------------------------- /resources_en/tips/ColorEditingInCss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ColorEditingInCss.html -------------------------------------------------------------------------------- /resources_en/tips/ColorFiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ColorFiles.html -------------------------------------------------------------------------------- /resources_en/tips/ColumnSelection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ColumnSelection.html -------------------------------------------------------------------------------- /resources_en/tips/CommentCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CommentCode.html -------------------------------------------------------------------------------- /resources_en/tips/CommitCtrlK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CommitCtrlK.html -------------------------------------------------------------------------------- /resources_en/tips/Compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Compare.html -------------------------------------------------------------------------------- /resources_en/tips/CompleteStatement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CompleteStatement.html -------------------------------------------------------------------------------- /resources_en/tips/CompletionInHTML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CompletionInHTML.html -------------------------------------------------------------------------------- /resources_en/tips/ConfiguringTerminal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ConfiguringTerminal.html -------------------------------------------------------------------------------- /resources_en/tips/CopyPasteReference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CopyPasteReference.html -------------------------------------------------------------------------------- /resources_en/tips/CopyWithNoSelection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CopyWithNoSelection.html -------------------------------------------------------------------------------- /resources_en/tips/CtrlD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CtrlD.html -------------------------------------------------------------------------------- /resources_en/tips/CtrlDotInLookups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CtrlDotInLookups.html -------------------------------------------------------------------------------- /resources_en/tips/CtrlShiftI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CtrlShiftI.html -------------------------------------------------------------------------------- /resources_en/tips/CtrlShiftIForLookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CtrlShiftIForLookup.html -------------------------------------------------------------------------------- /resources_en/tips/CtrlW.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/CtrlW.html -------------------------------------------------------------------------------- /resources_en/tips/DDDisable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/DDDisable.html -------------------------------------------------------------------------------- /resources_en/tips/DeleteLine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/DeleteLine.html -------------------------------------------------------------------------------- /resources_en/tips/DiagramShow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/DiagramShow.html -------------------------------------------------------------------------------- /resources_en/tips/DiagramShowDiff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/DiagramShowDiff.html -------------------------------------------------------------------------------- /resources_en/tips/DiagramShowPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/DiagramShowPopup.html -------------------------------------------------------------------------------- /resources_en/tips/DiffChevron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/DiffChevron.html -------------------------------------------------------------------------------- /resources_en/tips/DirDiff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/DirDiff.html -------------------------------------------------------------------------------- /resources_en/tips/DotEtcInLookups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/DotEtcInLookups.html -------------------------------------------------------------------------------- /resources_en/tips/DragToOpen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/DragToOpen.html -------------------------------------------------------------------------------- /resources_en/tips/EditRegExp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/EditRegExp.html -------------------------------------------------------------------------------- /resources_en/tips/Emmet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Emmet.html -------------------------------------------------------------------------------- /resources_en/tips/EnterDirectoryInGotoFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/EnterDirectoryInGotoFile.html -------------------------------------------------------------------------------- /resources_en/tips/Escape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Escape.html -------------------------------------------------------------------------------- /resources_en/tips/EvaluateExpressionInEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/EvaluateExpressionInEditor.html -------------------------------------------------------------------------------- /resources_en/tips/ExcludeFromProject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ExcludeFromProject.html -------------------------------------------------------------------------------- /resources_en/tips/ExternalJavaDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ExternalJavaDoc.html -------------------------------------------------------------------------------- /resources_en/tips/FavoritesToolWindow1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/FavoritesToolWindow1.html -------------------------------------------------------------------------------- /resources_en/tips/FavoritesToolWindow2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/FavoritesToolWindow2.html -------------------------------------------------------------------------------- /resources_en/tips/FileStructurePopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/FileStructurePopup.html -------------------------------------------------------------------------------- /resources_en/tips/FileWatchersInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/FileWatchersInspection.html -------------------------------------------------------------------------------- /resources_en/tips/FindInPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/FindInPath.html -------------------------------------------------------------------------------- /resources_en/tips/FindReplaceToggle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/FindReplaceToggle.html -------------------------------------------------------------------------------- /resources_en/tips/FindUsages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/FindUsages.html -------------------------------------------------------------------------------- /resources_en/tips/FinishBySmartEnter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/FinishBySmartEnter.html -------------------------------------------------------------------------------- /resources_en/tips/FixDocComment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/FixDocComment.html -------------------------------------------------------------------------------- /resources_en/tips/GoToAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/GoToAction.html -------------------------------------------------------------------------------- /resources_en/tips/GoToClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/GoToClass.html -------------------------------------------------------------------------------- /resources_en/tips/GoToDeclaration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/GoToDeclaration.html -------------------------------------------------------------------------------- /resources_en/tips/GoToFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/GoToFile.html -------------------------------------------------------------------------------- /resources_en/tips/GoToImplementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/GoToImplementation.html -------------------------------------------------------------------------------- /resources_en/tips/GoToInspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/GoToInspection.html -------------------------------------------------------------------------------- /resources_en/tips/GoToSymbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/GoToSymbol.html -------------------------------------------------------------------------------- /resources_en/tips/GotoLineInFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/GotoLineInFile.html -------------------------------------------------------------------------------- /resources_en/tips/HierarchyBrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/HierarchyBrowser.html -------------------------------------------------------------------------------- /resources_en/tips/HighlightImplements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/HighlightImplements.html -------------------------------------------------------------------------------- /resources_en/tips/HighlightMethodExitPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/HighlightMethodExitPoint.html -------------------------------------------------------------------------------- /resources_en/tips/HighlightThrows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/HighlightThrows.html -------------------------------------------------------------------------------- /resources_en/tips/HighlightUsagesInFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/HighlightUsagesInFile.html -------------------------------------------------------------------------------- /resources_en/tips/HippieCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/HippieCompletion.html -------------------------------------------------------------------------------- /resources_en/tips/HorizontalScrolling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/HorizontalScrolling.html -------------------------------------------------------------------------------- /resources_en/tips/Html5Outline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Html5Outline.html -------------------------------------------------------------------------------- /resources_en/tips/ImageFileCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ImageFileCompletion.html -------------------------------------------------------------------------------- /resources_en/tips/ImagesLookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ImagesLookup.html -------------------------------------------------------------------------------- /resources_en/tips/InlineVariable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/InlineVariable.html -------------------------------------------------------------------------------- /resources_en/tips/InsertLiveTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/InsertLiveTemplate.html -------------------------------------------------------------------------------- /resources_en/tips/InspectCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/InspectCode.html -------------------------------------------------------------------------------- /resources_en/tips/IntroduceConstant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/IntroduceConstant.html -------------------------------------------------------------------------------- /resources_en/tips/IntroduceVariable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/IntroduceVariable.html -------------------------------------------------------------------------------- /resources_en/tips/IssueNavigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/IssueNavigation.html -------------------------------------------------------------------------------- /resources_en/tips/JoinLines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/JoinLines.html -------------------------------------------------------------------------------- /resources_en/tips/JumpToLastEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/JumpToLastEdit.html -------------------------------------------------------------------------------- /resources_en/tips/LayoutCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/LayoutCode.html -------------------------------------------------------------------------------- /resources_en/tips/LensMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/LensMode.html -------------------------------------------------------------------------------- /resources_en/tips/LineEndings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/LineEndings.html -------------------------------------------------------------------------------- /resources_en/tips/LineEndingsFolder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/LineEndingsFolder.html -------------------------------------------------------------------------------- /resources_en/tips/LiveTemplates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/LiveTemplates.html -------------------------------------------------------------------------------- /resources_en/tips/LiveTemplatesRestore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/LiveTemplatesRestore.html -------------------------------------------------------------------------------- /resources_en/tips/LocalVCS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/LocalVCS.html -------------------------------------------------------------------------------- /resources_en/tips/MenuItemsDescriptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/MenuItemsDescriptions.html -------------------------------------------------------------------------------- /resources_en/tips/MethodSeparators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/MethodSeparators.html -------------------------------------------------------------------------------- /resources_en/tips/MethodUpDown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/MethodUpDown.html -------------------------------------------------------------------------------- /resources_en/tips/MoveToChangelist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/MoveToChangelist.html -------------------------------------------------------------------------------- /resources_en/tips/MoveUpDown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/MoveUpDown.html -------------------------------------------------------------------------------- /resources_en/tips/Multicursor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Multicursor.html -------------------------------------------------------------------------------- /resources_en/tips/Multicursor1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Multicursor1.html -------------------------------------------------------------------------------- /resources_en/tips/Multiselection1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Multiselection1.html -------------------------------------------------------------------------------- /resources_en/tips/Multiselection2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Multiselection2.html -------------------------------------------------------------------------------- /resources_en/tips/MultiselectionInSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/MultiselectionInSearch.html -------------------------------------------------------------------------------- /resources_en/tips/MultiselectionInSearch1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/MultiselectionInSearch1.html -------------------------------------------------------------------------------- /resources_en/tips/MultiselectionWords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/MultiselectionWords.html -------------------------------------------------------------------------------- /resources_en/tips/NamedBreakpoints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/NamedBreakpoints.html -------------------------------------------------------------------------------- /resources_en/tips/NavBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/NavBar.html -------------------------------------------------------------------------------- /resources_en/tips/NavigateToFilePath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/NavigateToFilePath.html -------------------------------------------------------------------------------- /resources_en/tips/NextPrevError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/NextPrevError.html -------------------------------------------------------------------------------- /resources_en/tips/OverrideImplementMethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/OverrideImplementMethods.html -------------------------------------------------------------------------------- /resources_en/tips/ParameterInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ParameterInfo.html -------------------------------------------------------------------------------- /resources_en/tips/PharDiff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/PharDiff.html -------------------------------------------------------------------------------- /resources_en/tips/PostfixCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/PostfixCompletion.html -------------------------------------------------------------------------------- /resources_en/tips/PreviewTODO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/PreviewTODO.html -------------------------------------------------------------------------------- /resources_en/tips/PrintKeywords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/PrintKeywords.html -------------------------------------------------------------------------------- /resources_en/tips/QuickDocInSuggestionList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/QuickDocInSuggestionList.html -------------------------------------------------------------------------------- /resources_en/tips/QuickDocOnMouseMove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/QuickDocOnMouseMove.html -------------------------------------------------------------------------------- /resources_en/tips/QuickEvaluateExpression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/QuickEvaluateExpression.html -------------------------------------------------------------------------------- /resources_en/tips/QuickFixRightArrow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/QuickFixRightArrow.html -------------------------------------------------------------------------------- /resources_en/tips/QuickJavaDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/QuickJavaDoc.html -------------------------------------------------------------------------------- /resources_en/tips/QuickJavaDocInLookups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/QuickJavaDocInLookups.html -------------------------------------------------------------------------------- /resources_en/tips/QuickSwitchScheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/QuickSwitchScheme.html -------------------------------------------------------------------------------- /resources_en/tips/RecentChanges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/RecentChanges.html -------------------------------------------------------------------------------- /resources_en/tips/RecentFiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/RecentFiles.html -------------------------------------------------------------------------------- /resources_en/tips/RecentSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/RecentSearch.html -------------------------------------------------------------------------------- /resources_en/tips/RefactorThis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/RefactorThis.html -------------------------------------------------------------------------------- /resources_en/tips/RemoteInterpreter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/RemoteInterpreter.html -------------------------------------------------------------------------------- /resources_en/tips/RemoveToolWindowButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/RemoveToolWindowButton.html -------------------------------------------------------------------------------- /resources_en/tips/Rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Rename.html -------------------------------------------------------------------------------- /resources_en/tips/RenameCssSelector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/RenameCssSelector.html -------------------------------------------------------------------------------- /resources_en/tips/Reopen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Reopen.html -------------------------------------------------------------------------------- /resources_en/tips/RichTextCopy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/RichTextCopy.html -------------------------------------------------------------------------------- /resources_en/tips/RunConfigFolders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/RunConfigFolders.html -------------------------------------------------------------------------------- /resources_en/tips/ScopesInTODO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ScopesInTODO.html -------------------------------------------------------------------------------- /resources_en/tips/Scratch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Scratch.html -------------------------------------------------------------------------------- /resources_en/tips/ScratchesView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ScratchesView.html -------------------------------------------------------------------------------- /resources_en/tips/SearchEverywhere.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/SearchEverywhere.html -------------------------------------------------------------------------------- /resources_en/tips/SearchInSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/SearchInSettings.html -------------------------------------------------------------------------------- /resources_en/tips/SecondBasicClassNameCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/SecondBasicClassNameCompletion.html -------------------------------------------------------------------------------- /resources_en/tips/SelectIn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/SelectIn.html -------------------------------------------------------------------------------- /resources_en/tips/SelectRunDebugConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/SelectRunDebugConfiguration.html -------------------------------------------------------------------------------- /resources_en/tips/SelectTasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/SelectTasks.html -------------------------------------------------------------------------------- /resources_en/tips/ShowAppliedStyles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ShowAppliedStyles.html -------------------------------------------------------------------------------- /resources_en/tips/ShowHideSideBars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ShowHideSideBars.html -------------------------------------------------------------------------------- /resources_en/tips/ShowUsages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ShowUsages.html -------------------------------------------------------------------------------- /resources_en/tips/SmartTypeAfterNew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/SmartTypeAfterNew.html -------------------------------------------------------------------------------- /resources_en/tips/SmartTypeCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/SmartTypeCompletion.html -------------------------------------------------------------------------------- /resources_en/tips/SpecialCharacters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/SpecialCharacters.html -------------------------------------------------------------------------------- /resources_en/tips/SpeedSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/SpeedSearch.html -------------------------------------------------------------------------------- /resources_en/tips/SpeedSearchinLiveTemplates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/SpeedSearchinLiveTemplates.html -------------------------------------------------------------------------------- /resources_en/tips/Spellchecker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Spellchecker.html -------------------------------------------------------------------------------- /resources_en/tips/SpellcheckerDictionaries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/SpellcheckerDictionaries.html -------------------------------------------------------------------------------- /resources_en/tips/SurroundWith.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/SurroundWith.html -------------------------------------------------------------------------------- /resources_en/tips/Switcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Switcher.html -------------------------------------------------------------------------------- /resources_en/tips/TabInEditorClose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/TabInEditorClose.html -------------------------------------------------------------------------------- /resources_en/tips/TabInLookups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/TabInLookups.html -------------------------------------------------------------------------------- /resources_en/tips/TagNameCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/TagNameCompletion.html -------------------------------------------------------------------------------- /resources_en/tips/Terminal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Terminal.html -------------------------------------------------------------------------------- /resources_en/tips/TerminalOpen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/TerminalOpen.html -------------------------------------------------------------------------------- /resources_en/tips/ToolWindowsQuickAccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ToolWindowsQuickAccess.html -------------------------------------------------------------------------------- /resources_en/tips/UploadSshKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/UploadSshKey.html -------------------------------------------------------------------------------- /resources_en/tips/VariableNameCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/VariableNameCompletion.html -------------------------------------------------------------------------------- /resources_en/tips/VcsQuickList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/VcsQuickList.html -------------------------------------------------------------------------------- /resources_en/tips/ViewInBrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/ViewInBrowser.html -------------------------------------------------------------------------------- /resources_en/tips/Welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/Welcome.html -------------------------------------------------------------------------------- /resources_en/tips/WideScreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/WideScreen.html -------------------------------------------------------------------------------- /resources_en/tips/WildcardsInNavigationPopups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/WildcardsInNavigationPopups.html -------------------------------------------------------------------------------- /resources_en/tips/WordCompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/WordCompletion.html -------------------------------------------------------------------------------- /resources_en/tips/css/tips.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/css/tips.css -------------------------------------------------------------------------------- /resources_en/tips/css/tips_darcula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/css/tips_darcula.css -------------------------------------------------------------------------------- /resources_en/tips/images/ChangesView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ChangesView.png -------------------------------------------------------------------------------- /resources_en/tips/images/ChangesView@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ChangesView@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/ChangesView@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ChangesView@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/ChangesView_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ChangesView_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/CodeCompletionInSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/CodeCompletionInSearch.png -------------------------------------------------------------------------------- /resources_en/tips/images/LiveTemplatesRestore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/LiveTemplatesRestore.png -------------------------------------------------------------------------------- /resources_en/tips/images/LiveTemplatesRestore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/LiveTemplatesRestore@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/PostfixCompletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/PostfixCompletion.png -------------------------------------------------------------------------------- /resources_en/tips/images/PostfixCompletion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/PostfixCompletion@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/PostfixCompletion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/PostfixCompletion_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/RenameCssSelector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/RenameCssSelector.png -------------------------------------------------------------------------------- /resources_en/tips/images/RenameCssSelector@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/RenameCssSelector@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/RenameCssSelector_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/RenameCssSelector_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/RunConfigFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/RunConfigFolder.png -------------------------------------------------------------------------------- /resources_en/tips/images/RunConfigFolder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/RunConfigFolder@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/RunConfigFolder@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/RunConfigFolder@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/RunConfigFolder_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/RunConfigFolder_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/SSHKeyUpload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/SSHKeyUpload.png -------------------------------------------------------------------------------- /resources_en/tips/images/address_bar_local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/address_bar_local.png -------------------------------------------------------------------------------- /resources_en/tips/images/address_bar_local@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/address_bar_local@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/address_bar_remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/address_bar_remote.png -------------------------------------------------------------------------------- /resources_en/tips/images/address_bar_remote@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/address_bar_remote@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/alt_insert_in_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/alt_insert_in_editor.png -------------------------------------------------------------------------------- /resources_en/tips/images/alt_insert_in_editor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/alt_insert_in_editor@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/annotationShowDiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/annotationShowDiff.png -------------------------------------------------------------------------------- /resources_en/tips/images/annotationShowDiff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/annotationShowDiff@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/annotationShowDiff_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/annotationShowDiff_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrow.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrow@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrow@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrow@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrowLeftDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrowLeftDown.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrowLeftDown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrowLeftDown@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrowLeftDown@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrowLeftDown@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrowLeftDown_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrowLeftDown_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrowRight.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrowRight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrowRight@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrowRight@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrowRight@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrowRightDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrowRightDown.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrowRightDown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrowRightDown@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrowRightDown@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrowRightDown@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrowRightDown_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrowRightDown_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrowRight_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrowRight_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/arrow_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/arrow_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/bookmarks1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/bookmarks1.png -------------------------------------------------------------------------------- /resources_en/tips/images/bookmarks1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/bookmarks1@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/bookmarks1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/bookmarks1@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/bookmarks1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/bookmarks1_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/breakpoint_speedmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/breakpoint_speedmenu.png -------------------------------------------------------------------------------- /resources_en/tips/images/breakpoint_speedmenu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/breakpoint_speedmenu@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/browser_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/browser_icons.png -------------------------------------------------------------------------------- /resources_en/tips/images/browser_icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/browser_icons@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/browser_icons@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/browser_icons@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/browser_icons_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/browser_icons_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/builtInServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/builtInServer.png -------------------------------------------------------------------------------- /resources_en/tips/images/builtInServer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/builtInServer@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/builtInServer@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/builtInServer@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/builtInServer_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/builtInServer_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/bullet.png -------------------------------------------------------------------------------- /resources_en/tips/images/camel_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/camel_completion.png -------------------------------------------------------------------------------- /resources_en/tips/images/camel_completion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/camel_completion@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/camel_completion@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/camel_completion@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/camel_completion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/camel_completion_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/camel_goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/camel_goto.png -------------------------------------------------------------------------------- /resources_en/tips/images/camel_goto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/camel_goto@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/camel_goto@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/camel_goto@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/camel_goto_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/camel_goto_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/changeLookupSorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/changeLookupSorting.png -------------------------------------------------------------------------------- /resources_en/tips/images/changeLookupSorting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/changeLookupSorting@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/changeLookupSorting_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/changeLookupSorting_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/checkRegExp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/checkRegExp.png -------------------------------------------------------------------------------- /resources_en/tips/images/checkRegExp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/checkRegExp@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/checkRegExp@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/checkRegExp@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/checkRegExp_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/checkRegExp_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/close1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/close1.png -------------------------------------------------------------------------------- /resources_en/tips/images/close_others.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/close_others.png -------------------------------------------------------------------------------- /resources_en/tips/images/close_others@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/close_others@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/close_others@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/close_others@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/close_others_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/close_others_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/closing_tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/closing_tags.png -------------------------------------------------------------------------------- /resources_en/tips/images/closing_tags@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/closing_tags@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/closing_tags@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/closing_tags@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/closing_tags_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/closing_tags_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/code_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/code_completion.png -------------------------------------------------------------------------------- /resources_en/tips/images/code_completion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/code_completion@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/code_completion@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/code_completion@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/code_completion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/code_completion_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/code_completion_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/code_completion_middle.png -------------------------------------------------------------------------------- /resources_en/tips/images/code_completion_no_shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/code_completion_no_shift.png -------------------------------------------------------------------------------- /resources_en/tips/images/coloredFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/coloredFiles.png -------------------------------------------------------------------------------- /resources_en/tips/images/coloredFiles@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/coloredFiles@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/coloredFiles@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/coloredFiles@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/coloredFiles_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/coloredFiles_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/columnSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/columnSelection.png -------------------------------------------------------------------------------- /resources_en/tips/images/columnSelection@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/columnSelection@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/columnSelection@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/columnSelection@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/columnSelection_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/columnSelection_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/complete_method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/complete_method.png -------------------------------------------------------------------------------- /resources_en/tips/images/complete_method@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/complete_method@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/complete_method@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/complete_method@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/complete_method_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/complete_method_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/complete_statement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/complete_statement.png -------------------------------------------------------------------------------- /resources_en/tips/images/complete_statement@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/complete_statement@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/complete_statement_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/complete_statement_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/completion_in_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/completion_in_html.png -------------------------------------------------------------------------------- /resources_en/tips/images/completion_in_html2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/completion_in_html2.png -------------------------------------------------------------------------------- /resources_en/tips/images/completion_in_html2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/completion_in_html2@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/completion_in_html2_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/completion_in_html2_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/completion_in_html@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/completion_in_html@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/completion_in_html_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/completion_in_html_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/copy_rich_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/copy_rich_text.png -------------------------------------------------------------------------------- /resources_en/tips/images/copy_rich_text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/copy_rich_text@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/copy_rich_text@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/copy_rich_text@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/copy_rich_text_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/copy_rich_text_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/cssColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/cssColor.png -------------------------------------------------------------------------------- /resources_en/tips/images/cssColor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/cssColor@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/cssColor@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/cssColor@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/cssColor_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/cssColor_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/ctrl_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ctrl_click.png -------------------------------------------------------------------------------- /resources_en/tips/images/ctrl_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ctrl_click@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/ctrl_click@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ctrl_click@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/ctrl_click_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ctrl_click_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/ctrl_shift_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ctrl_shift_i.png -------------------------------------------------------------------------------- /resources_en/tips/images/ctrl_shift_i@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ctrl_shift_i@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/ctrl_shift_i@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ctrl_shift_i@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/ctrl_shift_i_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ctrl_shift_i_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/ctrl_shift_i_lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ctrl_shift_i_lookup.png -------------------------------------------------------------------------------- /resources_en/tips/images/ctrl_shift_i_lookup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ctrl_shift_i_lookup@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/ctrl_shift_i_lookup_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ctrl_shift_i_lookup_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/ctrl_shift_in_lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ctrl_shift_in_lookup.png -------------------------------------------------------------------------------- /resources_en/tips/images/ctrl_shift_in_lookup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/ctrl_shift_in_lookup@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/dddisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/dddisable.png -------------------------------------------------------------------------------- /resources_en/tips/images/dddisable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/dddisable@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/dddisable@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/dddisable@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/dddisable_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/dddisable_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/dragToOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/dragToOpen.png -------------------------------------------------------------------------------- /resources_en/tips/images/dragToOpen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/dragToOpen@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/dragToOpen@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/dragToOpen@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/dragToOpen_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/dragToOpen_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/editregexp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/editregexp.png -------------------------------------------------------------------------------- /resources_en/tips/images/editregexp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/editregexp@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/editregexp@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/editregexp@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/editregexp_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/editregexp_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/emmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/emmet.png -------------------------------------------------------------------------------- /resources_en/tips/images/emmet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/emmet@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/emmet@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/emmet@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/emmet_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/emmet_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/enterDirectory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/enterDirectory.png -------------------------------------------------------------------------------- /resources_en/tips/images/enterDirectory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/enterDirectory@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/enterDirectory@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/enterDirectory@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/enterDirectory_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/enterDirectory_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/external_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/external_file.png -------------------------------------------------------------------------------- /resources_en/tips/images/extract_constant_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/extract_constant_1.png -------------------------------------------------------------------------------- /resources_en/tips/images/extract_constant_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/extract_constant_1@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/extract_constant_1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/extract_constant_1_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/extract_constant_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/extract_constant_2.png -------------------------------------------------------------------------------- /resources_en/tips/images/extract_constant_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/extract_constant_2@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/extract_constant_2_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/extract_constant_2_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/fileStructurePopup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/fileStructurePopup.png -------------------------------------------------------------------------------- /resources_en/tips/images/fileStructurePopup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/fileStructurePopup@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/fileStructurePopup_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/fileStructurePopup_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/file_watcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/file_watcher.png -------------------------------------------------------------------------------- /resources_en/tips/images/file_watcher@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/file_watcher@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/file_watcher@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/file_watcher@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/file_watcher_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/file_watcher_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/fix_doc_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/fix_doc_comment.png -------------------------------------------------------------------------------- /resources_en/tips/images/fix_doc_comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/fix_doc_comment@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/fix_doc_comment@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/fix_doc_comment@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/fix_doc_comment_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/fix_doc_comment_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/gotoFileLineNumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/gotoFileLineNumber.png -------------------------------------------------------------------------------- /resources_en/tips/images/gotoFileLineNumber@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/gotoFileLineNumber@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/gotoFileLineNumber_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/gotoFileLineNumber_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/goto_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/goto_class.png -------------------------------------------------------------------------------- /resources_en/tips/images/goto_class@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/goto_class@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/goto_class@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/goto_class@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/goto_class_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/goto_class_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/goto_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/goto_file.png -------------------------------------------------------------------------------- /resources_en/tips/images/goto_file@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/goto_file@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/goto_file@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/goto_file@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/goto_file_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/goto_file_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/goto_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/goto_symbol.png -------------------------------------------------------------------------------- /resources_en/tips/images/goto_symbol@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/goto_symbol@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/goto_symbol@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/goto_symbol@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/goto_symbol_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/goto_symbol_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/groups_of_breakpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/groups_of_breakpoints.png -------------------------------------------------------------------------------- /resources_en/tips/images/groups_of_breakpoints@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/groups_of_breakpoints@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/hierarchy_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/hierarchy_browser.png -------------------------------------------------------------------------------- /resources_en/tips/images/hierarchy_browser@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/hierarchy_browser@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/hierarchy_browser_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/hierarchy_browser_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/highlightExceptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/highlightExceptions.png -------------------------------------------------------------------------------- /resources_en/tips/images/highlightExceptions@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/highlightExceptions@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/highlightExceptions_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/highlightExceptions_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/highlightImplemented.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/highlightImplemented.png -------------------------------------------------------------------------------- /resources_en/tips/images/highlightImplemented@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/highlightImplemented@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/hippie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/hippie.png -------------------------------------------------------------------------------- /resources_en/tips/images/hippie@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/hippie@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/hippie@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/hippie@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/hippie_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/hippie_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/html5_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/html5_outline.png -------------------------------------------------------------------------------- /resources_en/tips/images/html5_outline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/html5_outline@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/html5_outline@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/html5_outline@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/html5_outline_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/html5_outline_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/icon-robots.txt: -------------------------------------------------------------------------------- 1 | skip: * 2 | -------------------------------------------------------------------------------- /resources_en/tips/images/image_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/image_completion.png -------------------------------------------------------------------------------- /resources_en/tips/images/image_completion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/image_completion@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/image_completion@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/image_completion@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/image_completion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/image_completion_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/image_lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/image_lookup.png -------------------------------------------------------------------------------- /resources_en/tips/images/image_lookup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/image_lookup@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/image_lookup@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/image_lookup@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/image_lookup_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/image_lookup_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/inline_variable_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/inline_variable_1.png -------------------------------------------------------------------------------- /resources_en/tips/images/inline_variable_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/inline_variable_1@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/inline_variable_1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/inline_variable_1_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/inline_variable_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/inline_variable_2.png -------------------------------------------------------------------------------- /resources_en/tips/images/inline_variable_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/inline_variable_2@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/inline_variable_2_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/inline_variable_2_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/insert_live_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/insert_live_template.png -------------------------------------------------------------------------------- /resources_en/tips/images/insert_live_template@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/insert_live_template@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/introduce_variable_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/introduce_variable_1.png -------------------------------------------------------------------------------- /resources_en/tips/images/introduce_variable_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/introduce_variable_1@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/introduce_variable_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/introduce_variable_2.png -------------------------------------------------------------------------------- /resources_en/tips/images/introduce_variable_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/introduce_variable_2@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/issueNavigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/issueNavigation.png -------------------------------------------------------------------------------- /resources_en/tips/images/issueNavigation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/issueNavigation1.png -------------------------------------------------------------------------------- /resources_en/tips/images/issueNavigation1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/issueNavigation1@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/issueNavigation1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/issueNavigation1@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/issueNavigation1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/issueNavigation1_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/issueNavigation_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/issueNavigation_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/jumplist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/jumplist.png -------------------------------------------------------------------------------- /resources_en/tips/images/jumplist@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/jumplist@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/jumplist@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/jumplist@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/jumplist_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/jumplist_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/lens.png -------------------------------------------------------------------------------- /resources_en/tips/images/lens1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/lens1.png -------------------------------------------------------------------------------- /resources_en/tips/images/lens1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/lens1@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/lens1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/lens1@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/lens1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/lens1_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/lens@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/lens@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/lens@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/lens@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/lens_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/lens_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/line_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/line_separator.png -------------------------------------------------------------------------------- /resources_en/tips/images/line_separator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/line_separator@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/line_separator@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/line_separator@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/line_separator_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/line_separator_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/line_separator_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/line_separator_folder.png -------------------------------------------------------------------------------- /resources_en/tips/images/line_separator_folder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/line_separator_folder@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/live_templates_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/live_templates_1.png -------------------------------------------------------------------------------- /resources_en/tips/images/live_templates_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/live_templates_1@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/live_templates_1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/live_templates_1@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/live_templates_1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/live_templates_1_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/live_templates_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/live_templates_2.png -------------------------------------------------------------------------------- /resources_en/tips/images/live_templates_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/live_templates_2@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/live_templates_2@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/live_templates_2@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/live_templates_2_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/live_templates_2_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/lower_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/lower_left.png -------------------------------------------------------------------------------- /resources_en/tips/images/methodExitPoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/methodExitPoints.png -------------------------------------------------------------------------------- /resources_en/tips/images/methodExitPoints@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/methodExitPoints@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/methodExitPoints@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/methodExitPoints@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/methodExitPoints_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/methodExitPoints_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/method_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/method_separator.png -------------------------------------------------------------------------------- /resources_en/tips/images/method_separator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/method_separator@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/method_separator@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/method_separator@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/method_separator_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/method_separator_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/move_to_changelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/move_to_changelist.png -------------------------------------------------------------------------------- /resources_en/tips/images/move_to_changelist@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/move_to_changelist@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/move_to_changelist_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/move_to_changelist_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/multicursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multicursor.png -------------------------------------------------------------------------------- /resources_en/tips/images/multicursor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multicursor1.png -------------------------------------------------------------------------------- /resources_en/tips/images/multicursor1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multicursor1@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/multicursor1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multicursor1@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/multicursor1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multicursor1_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/multicursor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multicursor@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/multicursor@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multicursor@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/multicursor_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multicursor_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection1.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection1@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection1@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection1_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection2.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection2@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection2@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection2@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection2_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection2_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection_column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection_column.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection_column@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection_column@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection_words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection_words.png -------------------------------------------------------------------------------- /resources_en/tips/images/multiselection_words@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/multiselection_words@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/named_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/named_breakpoint.png -------------------------------------------------------------------------------- /resources_en/tips/images/named_breakpoint1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/named_breakpoint1.png -------------------------------------------------------------------------------- /resources_en/tips/images/named_breakpoint1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/named_breakpoint1@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/named_breakpoint@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/named_breakpoint@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/named_breakpoint@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/named_breakpoint@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/named_breakpoint_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/named_breakpoint_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/navigateToFilePath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/navigateToFilePath.png -------------------------------------------------------------------------------- /resources_en/tips/images/navigateToFilePath@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/navigateToFilePath@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/navigateToFilePath_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/navigateToFilePath_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/navigationbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/navigationbar.png -------------------------------------------------------------------------------- /resources_en/tips/images/navigationbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/navigationbar@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/navigationbar@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/navigationbar@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/navigationbar_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/navigationbar_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/param_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/param_info.png -------------------------------------------------------------------------------- /resources_en/tips/images/param_info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/param_info@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/param_info@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/param_info@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/param_info_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/param_info_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/qdoc_live_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/qdoc_live_template.png -------------------------------------------------------------------------------- /resources_en/tips/images/qdoc_live_template@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/qdoc_live_template@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/qdoc_live_template_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/qdoc_live_template_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/quick_evaluate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/quick_evaluate.png -------------------------------------------------------------------------------- /resources_en/tips/images/quick_evaluate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/quick_evaluate@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/quick_evaluate@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/quick_evaluate@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/quick_evaluate_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/quick_evaluate_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/quick_fix_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/quick_fix_options.png -------------------------------------------------------------------------------- /resources_en/tips/images/quick_fix_options@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/quick_fix_options@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/quick_fix_options_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/quick_fix_options_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/quick_javadoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/quick_javadoc.png -------------------------------------------------------------------------------- /resources_en/tips/images/quick_javadoc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/quick_javadoc@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/quick_javadoc@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/quick_javadoc@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/quick_javadoc_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/quick_javadoc_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/quick_javadoc_in_lookups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/quick_javadoc_in_lookups.png -------------------------------------------------------------------------------- /resources_en/tips/images/quick_switch_scheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/quick_switch_scheme.png -------------------------------------------------------------------------------- /resources_en/tips/images/quick_switch_scheme@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/quick_switch_scheme@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/quick_switch_scheme_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/quick_switch_scheme_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/recentSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recentSearch.png -------------------------------------------------------------------------------- /resources_en/tips/images/recentSearch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recentSearch@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/recentSearch@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recentSearch@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/recentSearch_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recentSearch_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/recent_changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recent_changes.png -------------------------------------------------------------------------------- /resources_en/tips/images/recent_changes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recent_changes@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/recent_changes@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recent_changes@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/recent_changes_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recent_changes_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/recent_files_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recent_files_1.png -------------------------------------------------------------------------------- /resources_en/tips/images/recent_files_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recent_files_1@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/recent_files_1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recent_files_1@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/recent_files_1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recent_files_1_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/recent_files_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recent_files_2.png -------------------------------------------------------------------------------- /resources_en/tips/images/recent_files_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recent_files_2@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/recent_files_2@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recent_files_2@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/recent_files_2_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/recent_files_2_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/refactor_this.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/refactor_this.png -------------------------------------------------------------------------------- /resources_en/tips/images/refactor_this@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/refactor_this@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/refactor_this@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/refactor_this@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/refactor_this_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/refactor_this_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/reference_copied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/reference_copied.png -------------------------------------------------------------------------------- /resources_en/tips/images/reference_copied@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/reference_copied@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/reference_copied@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/reference_copied@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/reference_copied_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/reference_copied_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/reference_pasted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/reference_pasted.png -------------------------------------------------------------------------------- /resources_en/tips/images/reference_pasted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/reference_pasted@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/reference_pasted@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/reference_pasted@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/reference_pasted_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/reference_pasted_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/remote.png -------------------------------------------------------------------------------- /resources_en/tips/images/remote@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/remote@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/remote@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/remote@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/remote_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/remote_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/remove.png -------------------------------------------------------------------------------- /resources_en/tips/images/remove@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/remove@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/remove@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/remove@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/remove_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/remove_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/remove_from_sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/remove_from_sidebar.png -------------------------------------------------------------------------------- /resources_en/tips/images/remove_from_sidebar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/remove_from_sidebar@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/remove_from_sidebar_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/remove_from_sidebar_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/rename.png -------------------------------------------------------------------------------- /resources_en/tips/images/rename@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/rename@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/rename@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/rename@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/rename_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/rename_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/reopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/reopen.png -------------------------------------------------------------------------------- /resources_en/tips/images/reopen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/reopen@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/reopen@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/reopen@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/reopen_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/reopen_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/scratch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/scratch.png -------------------------------------------------------------------------------- /resources_en/tips/images/scratch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/scratch@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/scratch@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/scratch@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/scratch_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/scratch_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/scratches_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/scratches_view.png -------------------------------------------------------------------------------- /resources_en/tips/images/scratches_view@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/scratches_view@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/scratches_view@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/scratches_view@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/scratches_view_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/scratches_view_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/searchEverywhere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/searchEverywhere.png -------------------------------------------------------------------------------- /resources_en/tips/images/searchEverywhere@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/searchEverywhere@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/searchEverywhere@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/searchEverywhere@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/searchEverywhere_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/searchEverywhere_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/searchEverywhere_lense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/searchEverywhere_lense.png -------------------------------------------------------------------------------- /resources_en/tips/images/search_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/search_settings.png -------------------------------------------------------------------------------- /resources_en/tips/images/search_settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/search_settings@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/search_settings@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/search_settings@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/search_settings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/search_settings_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/second_code_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/second_code_completion.png -------------------------------------------------------------------------------- /resources_en/tips/images/select_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/select_in.png -------------------------------------------------------------------------------- /resources_en/tips/images/select_in@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/select_in@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/select_in@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/select_in@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/select_in_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/select_in_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/select_tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/select_tasks.png -------------------------------------------------------------------------------- /resources_en/tips/images/select_tasks@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/select_tasks@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/select_tasks@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/select_tasks@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/select_tasks_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/select_tasks_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/showDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showDiagram.png -------------------------------------------------------------------------------- /resources_en/tips/images/showDiagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showDiagram@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/showDiagram@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showDiagram@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/showDiagramPopup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showDiagramPopup.png -------------------------------------------------------------------------------- /resources_en/tips/images/showDiagramPopup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showDiagramPopup@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/showDiagramPopup@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showDiagramPopup@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/showDiagramPopup_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showDiagramPopup_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/showDiagram_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showDiagram_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/showDiffOnDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showDiffOnDiagram.png -------------------------------------------------------------------------------- /resources_en/tips/images/showDiffOnDiagram.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showDiffOnDiagram.png.png -------------------------------------------------------------------------------- /resources_en/tips/images/showDiffOnDiagram.png@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showDiffOnDiagram.png@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/showDiffOnDiagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showDiffOnDiagram@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/showDiffOnDiagram_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showDiffOnDiagram_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/showToolWindows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showToolWindows.png -------------------------------------------------------------------------------- /resources_en/tips/images/showToolWindows@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showToolWindows@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/showToolWindows@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showToolWindows@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/showToolWindows_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showToolWindows_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/showUsages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showUsages.png -------------------------------------------------------------------------------- /resources_en/tips/images/showUsages@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showUsages@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/showUsages@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showUsages@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/showUsages_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/showUsages_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/show_applied_styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/show_applied_styles.png -------------------------------------------------------------------------------- /resources_en/tips/images/show_applied_styles@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/show_applied_styles@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/show_applied_styles_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/show_applied_styles_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/sidebySide@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/sidebySide@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/sidebySide_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/sidebySide_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/sidebyside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/sidebyside.png -------------------------------------------------------------------------------- /resources_en/tips/images/sidebyside1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/sidebyside1@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/sidebyside1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/sidebyside1@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/sidebyside2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/sidebyside2@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/sidebyside2@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/sidebyside2@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/sidebyside@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/sidebyside@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/smart_type_after_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/smart_type_after_new.png -------------------------------------------------------------------------------- /resources_en/tips/images/smart_type_after_new@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/smart_type_after_new@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/smart_type_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/smart_type_completion.png -------------------------------------------------------------------------------- /resources_en/tips/images/smart_type_completion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/smart_type_completion@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/speed_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/speed_search.png -------------------------------------------------------------------------------- /resources_en/tips/images/speed_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/speed_search@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/speed_search@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/speed_search@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/speed_search_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/speed_search_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/surround_with.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/surround_with.png -------------------------------------------------------------------------------- /resources_en/tips/images/surround_with@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/surround_with@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/surround_with@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/surround_with@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/surround_with_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/surround_with_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/switcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/switcher.png -------------------------------------------------------------------------------- /resources_en/tips/images/switcher@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/switcher@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/switcher@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/switcher@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/switcher_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/switcher_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/tagNameCompletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/tagNameCompletion.png -------------------------------------------------------------------------------- /resources_en/tips/images/tagNameCompletion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/tagNameCompletion@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/tagNameCompletion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/tagNameCompletion_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/terminal.png -------------------------------------------------------------------------------- /resources_en/tips/images/terminal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/terminal@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/terminal@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/terminal@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/terminal_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/terminal_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/todo_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/todo_preview.png -------------------------------------------------------------------------------- /resources_en/tips/images/todo_preview@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/todo_preview@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/todo_preview@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/todo_preview@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/todo_preview_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/todo_preview_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/todo_scopes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/todo_scopes.png -------------------------------------------------------------------------------- /resources_en/tips/images/todo_scopes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/todo_scopes@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/todo_scopes@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/todo_scopes@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/todo_scopes_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/todo_scopes_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/variable_name_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/variable_name_completion.png -------------------------------------------------------------------------------- /resources_en/tips/images/vcsQuickList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/vcsQuickList.png -------------------------------------------------------------------------------- /resources_en/tips/images/vcsQuickList@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/vcsQuickList@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/vcsQuickList@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/vcsQuickList@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/vcsQuickList_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/vcsQuickList_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/wildcard_goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/wildcard_goto.png -------------------------------------------------------------------------------- /resources_en/tips/images/wildcard_goto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/wildcard_goto@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/wildcard_goto@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/wildcard_goto@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/wildcard_goto_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/wildcard_goto_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/word_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/word_completion.png -------------------------------------------------------------------------------- /resources_en/tips/images/word_completion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/word_completion@2x.png -------------------------------------------------------------------------------- /resources_en/tips/images/word_completion@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/word_completion@2x_dark.png -------------------------------------------------------------------------------- /resources_en/tips/images/word_completion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/images/word_completion_dark.png -------------------------------------------------------------------------------- /resources_en/tips/moveFileToChangelist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewen0930/PhpStorm-Chinese/HEAD/resources_en/tips/moveFileToChangelist.html --------------------------------------------------------------------------------