├── .gitignore ├── LICENSE.txt ├── META-INF └── MANIFEST.MF ├── NOTICE.txt ├── README.rst ├── data ├── 1.png └── 2.png ├── fileTemplates └── internal │ ├── Html.html.ft │ ├── Html5.html.ft │ └── Xhtml.xhtml.ft ├── inspectionDescriptions ├── Annotator.html ├── InconsistentLineSeparators.html ├── JavacQuirks.html ├── LossyEncoding.html └── SyntaxError.html ├── intentionDescriptions └── QuickEditAction │ ├── after.txt.template │ ├── before.txt.template │ └── description.html ├── messages ├── ActionsBundle.properties ├── AnalysisScopeBundle.properties ├── AntBundle.properties ├── ApplicationBundle.properties ├── CodeEditorBundle.properties ├── CodeInsightBundle.properties ├── CommonBundle.properties ├── CompilerBundle.properties ├── CompletionBundle.properties ├── DaemonBundle.properties ├── DebuggerBundle.properties ├── DiagnosticBundle.properties ├── DiffBundle.properties ├── DomBundle.properties ├── DupLocatorBundle.properties ├── EditorBundle.properties ├── EvaluationFeedbackRequest.html ├── ExecutionBundle.properties ├── FeatureStatisticsBundle.properties ├── FileTypesBundle.properties ├── FindBundle.properties ├── GraphBundle.properties ├── IdeBundle.properties ├── InspectionsBundle.properties ├── JamBundle.properties ├── JavadocBundle.properties ├── KeyMapBundle.properties ├── LangBundle.properties ├── LicenseCommonBundle.properties ├── OptionsBundle.properties ├── PsiBundle.properties ├── QuickFixBundle.properties ├── RefactoringBundle.properties ├── SMTestsRunnerBundle.properties ├── StatisticsBundle.properties ├── ToolsBundle.properties ├── UIBundle.properties ├── UsageView.properties ├── VcsBundle.properties ├── VfsBundle.properties ├── XDebuggerBundle.properties └── XmlBundle.properties ├── misc └── registry.properties ├── native2ascii.py ├── search ├── ignore.txt └── synonyms.xml └── tips ├── AdaptiveWelcome.html ├── AnnotationsAndDiffs.html ├── BreakpointSpeedmenu.html ├── BuiltInServer.html ├── CamelHumpsInCodeCompletion.html ├── CamelPrefixesInNavigationPopups.html ├── CancelByControlArrows.html ├── ChangeSorting.html ├── ChangesView.html ├── CheckRegExp.html ├── ClassNameCompletion.html ├── ClipboardStack.html ├── CloseOthers.html ├── CodeCompletion.html ├── CodeCompletionInSearch.html ├── CodeCompletionMiddle.html ├── CodeCompletionNoShift.html ├── ColorEditingInCss.html ├── ColorFiles.html ├── ColumnSelection.html ├── Comment.html ├── CommitCtrlK.html ├── CompletionInHTML.html ├── ConfiguringTerminal.html ├── Consoles.html ├── ConsolesCodeCompletion.html ├── ConsolesHistory.html ├── CopyWithNoSelection.html ├── CtrlD.html ├── CtrlDotInLookups.html ├── CtrlShiftI.html ├── CtrlShiftIForLookup.html ├── CtrlW.html ├── DirDiff.html ├── DotEtcInLookups.html ├── DragToOpen.html ├── EditRegExp.html ├── Emmet.html ├── EnterDirectoryInGotoFile.html ├── Escape.html ├── EvaluateExpressionInEditor.html ├── ExcludeFromProject.html ├── ExtractVariable.html ├── FileStructurePopup.html ├── FindReplaceToggle.html ├── FindUsages.html ├── FinishByControlEnter.html ├── GoToAction.html ├── GoToClass.html ├── GoToDeclaration.html ├── GoToInspection.html ├── GoToSymbol.html ├── GotoLineInFile.html ├── HierarchyBrowser.html ├── HighlightUsagesInFile.html ├── HorizontalScrolling.html ├── ImageFileCompletion.html ├── ImagesLookup.html ├── Interpreter.html ├── IntroduceVariable.html ├── IssueNavigation.html ├── JoinLines.html ├── JumpToLastEdit.html ├── LaunchConsole.html ├── LineEndings.html ├── LineEndingsFolder.html ├── LiveTemplates.html ├── LiveTemplatesDjango.html ├── LocalVCS.html ├── Managepy.html ├── MenuItemsDescriptions.html ├── MethodSeparators.html ├── MethodUpDown.html ├── MoveToChangelist.html ├── MoveUpDown.html ├── MultipleProjects.html ├── NavBar.html ├── NavigateToFilePath.html ├── OverrideImplementMethods.html ├── ParameterInfo.html ├── PreviewTODO.html ├── PyColorFiles.html ├── QuickFixRightArrow.html ├── QuickJavaDoc.html ├── QuickJavaDocInLookups.html ├── QuickSwitchScheme.html ├── RecentChanges.html ├── RecentFiles.html ├── RecentSearch.html ├── RefactorThis.html ├── RemoteInterpreter.html ├── Rename.html ├── RenameCssSelector.html ├── Reopen.html ├── RunConfigFolders.html ├── ScopesInTODO.html ├── SearchEverywhere.html ├── SearchInSettings.html ├── SelectIn.html ├── SelectRunDebugConfiguration.html ├── SelectTasks.html ├── ShowAppliedStyles.html ├── ShowHideSideBars.html ├── ShowUsages.html ├── SpeedSearch.html ├── SpeedSearchinLiveTemplates.html ├── Spellchecker.html ├── SpellcheckerDictionaries.html ├── Surround.html ├── Switcher.html ├── TabInEditorClose.html ├── TabInLookups.html ├── TagNameCompletion.html ├── Templates.html ├── Terminal.html ├── ToolWindowsQuickAccess.html ├── VcsQuickList.html ├── Welcome.html ├── WideScreen.html ├── WildcardsInNavigationPopups.html ├── WordCompletion.html ├── css ├── tips.css └── tips_darcula.css ├── images ├── CodeCompletionInSearch.png ├── CodeCompletionInSearch@2x.png ├── CodeCompletionInSearch@2x_dark.png ├── CodeCompletionInSearch_dark.png ├── RunConfigFolder.png ├── RunConfigFolder@2x.png ├── RunConfigFolder@2x_dark.png ├── RunConfigFolder_dark.png ├── SpeedSearchInLiveTemplates.png ├── SpeedSearchInLiveTemplates@2x.png ├── SpeedSearchInLiveTemplates@2x_dark.png ├── SpeedSearchInLiveTemplates_dark.png ├── add_remote_interpreter.png ├── add_remote_interpreter@2x.png ├── add_remote_interpreter@2x_dark.png ├── add_remote_interpreter_dark.png ├── annotationShowDiff.png ├── annotationShowDiff@2x.png ├── annotationShowDiff@2x_dark.png ├── annotationShowDiff_dark.png ├── breakpoint_speedmenu.png ├── breakpoint_speedmenu@2x.png ├── breakpoint_speedmenu@2x_dark.png ├── breakpoint_speedmenu@_dark.png ├── browse_remote_hosts.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 ├── class_name_completion.png ├── class_name_completion@2x.png ├── class_name_completion@2x_dark.png ├── class_name_completion_dark.png ├── close1.png ├── close_others.png ├── close_others@2x.png ├── close_others@2x_dark.png ├── close_others_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 ├── 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 ├── 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_in_lookup.png ├── ctrl_shift_in_lookup@2x.png ├── ctrl_shift_in_lookup@2x_dark.png ├── ctrl_shift_in_lookup_dark.png ├── default_template_language.png ├── default_template_language@2x.png ├── default_template_language@2x_dark.png ├── default_template_language_dark.png ├── deployment.png ├── deployment@2x.png ├── deployment@2x_dark.png ├── deployment_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 ├── extract_variable_1.png ├── extract_variable_1@2x.png ├── extract_variable_1@2x_dark.png ├── extract_variable_1_dark.png ├── extract_variable_2.png ├── extract_variable_2@2x.png ├── extract_variable_2@2x_dark.png ├── extract_variable_2_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_symbol.png ├── goto_symbol@2x.png ├── goto_symbol@2x_dark.png ├── goto_symbol_dark.png ├── goto_template_icon.png ├── goto_template_icon@2x.png ├── goto_template_icon@2x_dark.png ├── goto_template_icon_dark.png ├── goto_view.png ├── goto_view@2x.png ├── goto_view@2x_dark.png ├── goto_view_dark.png ├── goto_view_icon.png ├── goto_view_icon@2x.png ├── goto_view_icon@2x_dark.png ├── goto_view_icon_dark.png ├── hierarchy_browser.png ├── hierarchy_browser@2x.png ├── hierarchy_browser@2x_dark.png ├── hierarchy_browser_dark.png ├── 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 ├── 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@2x.png ├── issueNavigation@2x_dark.png ├── issueNavigation_dark.png ├── jumplist.png ├── jumplist@2x.png ├── jumplist@2x_dark.png ├── jumplist_dark.png ├── launch_console_in_debugger.png ├── launch_console_in_debugger@2x.png ├── launch_console_in_debugger@2x_dark.png ├── launch_console_in_debugger_dark.png ├── line_separator.png ├── line_separator@2x.png ├── line_separator@2x_dark.png ├── line_separator_dark.png ├── line_separator_folder.png ├── line_separator_folder@2x.png ├── line_separator_folder@2x_dark.png ├── line_separator_folder_dark.png ├── live_templates_1.png ├── live_templates_1@2x.png ├── live_templates_1@2x_dark.png ├── live_templates_1_dark.png ├── live_templates_2.png ├── live_templates_2@2x.png ├── live_templates_2@2x_dark.png ├── live_templates_2_dark.png ├── lower_left.png ├── lower_left@2x.png ├── lower_left@2x_dark.png ├── lower_left_dark.png ├── managepy.png ├── managepy@2x.png ├── managepy@2x_dark.png ├── managepy_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 ├── navigateToFilePath.png ├── navigateToFilePath@2x.png ├── navigateToFilePath@2x_dark.png ├── navigateToFilePath_dark.png ├── navigationbar.png ├── navigationbar@2x.png ├── navigationbar@2x_dark.png ├── navigationbar_dark.png ├── override_methods.png ├── override_methods@2x.png ├── override_methods@2x_dark.png ├── override_methods_dark.png ├── param_info.png ├── param_info@2x.png ├── param_info@2x_dark.png ├── param_info_dark.png ├── pyColoredFiles.png ├── pyColoredFiles@2x.png ├── pyColoredFiles@2x_dark.png ├── pyColoredFiles_dark.png ├── pyconsole.png ├── pyconsole@2x.png ├── pyconsole@2x_dark.png ├── pyconsole_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 ├── rename.png ├── rename@2x.png ├── rename@2x_dark.png ├── rename_dark.png ├── reopen.png ├── reopen@2x.png ├── reopen@2x_dark.png ├── reopen_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 ├── 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 ├── 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 ├── show_hide_tool_window_bars@2x.png ├── show_hide_tool_window_bars@2x_dark.png ├── show_hide_tool_window_bars_dark.png ├── sidebyside.png ├── sidebyside@2x.png ├── sidebyside@2x_dark.png ├── sidebyside_dark.png ├── speed_search.png ├── speed_search@2x.png ├── speed_search@2x_dark.png ├── speed_search_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 ├── try_except.png ├── try_except@2x.png ├── try_except@2x_dark.png ├── try_except_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 └── tips.xml /.gitignore: -------------------------------------------------------------------------------- 1 | messages/*_zh_CN.properties 2 | *.swp 3 | log/*.log 4 | -------------------------------------------------------------------------------- /META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Ant-Version: Apache Ant 1.8.2 3 | Created-By: 1.6.0_35-b10 (Sun Microsystems Inc.) 4 | 5 | -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- 1 | This software includes code from IntelliJ IDEA Community Edition 2 | Copyright (C) JetBrains s.r.o. 3 | http://www.jetbrains.com/idea/ 4 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | PyCharm 汉化项目 2 | ==== 3 | 4 | 生成语言包说明 5 | ---- 6 | 7 | 请用python3.x以上版本运行native2ascii.py,程序中调用了Java的打包命令,所以你本地Java必须配置好,运行后应该生成一个resources_zh_CN.jar。 8 | 9 | 10 | 将生成的语言包放到pycharm的lib目录下即可。 11 | 12 | 13 | 14 | .. image:: data/1.png 15 | 16 | 17 | 18 | .. image:: data/2.png 19 | 20 | -------------------------------------------------------------------------------- /data/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/data/1.png -------------------------------------------------------------------------------- /data/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/data/2.png -------------------------------------------------------------------------------- /fileTemplates/internal/Html.html.ft: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /fileTemplates/internal/Html5.html.ft: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /fileTemplates/internal/Xhtml.xhtml.ft: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /inspectionDescriptions/Annotator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Allows you to see problems reported by language annotators in the results of batch code inspection. 4 | 5 | -------------------------------------------------------------------------------- /inspectionDescriptions/InconsistentLineSeparators.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 这次检查从项目检测与默认的行分隔符不同的文件. 5 | 例如将行分隔符设置为 "\n" 在设置|代码样式|行分隔符, 6 | 和该文件您正在编辑使用 '\r\n' 作为行分隔符. 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /inspectionDescriptions/JavacQuirks.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 这次检查警告关于 Javac 已知问题、 问题和不兼容问题. 4 | 5 | 6 | -------------------------------------------------------------------------------- /inspectionDescriptions/LossyEncoding.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 这次检查将警告您的文档的当前编码不能表示的字符.
5 | 6 | 例如,当你在
7 | 11 | 12 | 通过更改文件编码解决这个问题, 13 | 通过直接在该文件中指定编码, 例如通过编辑 encoding=属性in the XML prolog of XML file, 14 | 或配置设置|项目设置|文件编码. 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /inspectionDescriptions/SyntaxError.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 允许您查看批处理代码检查的结果中的语法错误. 4 | 5 | 6 | -------------------------------------------------------------------------------- /intentionDescriptions/QuickEditAction/after.txt.template: -------------------------------------------------------------------------------- 1 | ... 2 | sqlStatement.execute("select * from some_table"); 3 | ... 4 | -------------------------------------------------------------------------------- /intentionDescriptions/QuickEditAction/before.txt.template: -------------------------------------------------------------------------------- 1 | ... 2 | sqlStatement.execute("select * from some_table"); 3 | ... 4 | -------------------------------------------------------------------------------- /intentionDescriptions/QuickEditAction/description.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 编辑在指定的编辑器注入片段载入,而无需外部语言的转义和串联. 4 | 5 | 6 | -------------------------------------------------------------------------------- /messages/CompletionBundle.properties: -------------------------------------------------------------------------------- 1 | completion.smart.type.generate.anonymous.body=generate anonymous body 2 | completion.smarttype.select.methods.to.override=Select Methods to Override 3 | completion.no.suggestions.of.type=No suggestions of type {0} 4 | completion.unknown.type=Unknown type {0} 5 | completion.smart.hint=Press {0} to show only variants that are suitable by type 6 | completion.smart.chain.hint=Press {0} once more to search across chained method calls 7 | completion.smart.toar.hint=Press {0} once more to find collections of {1} 8 | completion.smart.aslist.hint=Press {0} once more to find arrays of {1} 9 | completion.class.name.hint=Press {0} again to view all accessible classes 10 | completion.class.name.hint.2=Press {0} once more to ignore module dependencies while searching -------------------------------------------------------------------------------- /messages/DomBundle.properties: -------------------------------------------------------------------------------- 1 | quick.fixes.family=Dom 快速修复 2 | 3 | add.element.fix.name=添加<{0}>元素 4 | add.attribute.fix.name=添加"{0}"属性 5 | 6 | remove.element.fix.name=移除<{0}>元素 7 | remove.attribute.fix.name=移除"{0}"属性 8 | 9 | message.invalid.value.quotation=无效的值 ''{0}'' 10 | dom.usage.type=在XML描述符中的用法 11 | 12 | create.new.element=创建新{0} ''{1}'' 13 | choose.file=选取文件 14 | value.converter.format.exception=无法转换字符串''{0}'' 到目标类 ''{1}'' 15 | value.converter.format.exception.empty.string=无法转换为空字符串到目标类 ''{0}'' 16 | 17 | class.is.not.a.subclass=''{0}'' is not assignable to ''{1}'' 18 | class.is.not.concrete=''{0}'' is not a concrete class 19 | class.is.not.public=''{0}'' is not public 20 | class.has.no.default.constructor=''{0}'' 没有默认构造函数 21 | class.decorator.or.has.default.constructor=''{0}'' 应该有默认构造函数或实现''Decorator'' pattern 22 | 23 | interface.not.allowed=不允许接口 24 | enum.not.allowed=不允许枚举 25 | abstract.class.not.allowed=抽象类不允许 -------------------------------------------------------------------------------- /messages/DupLocatorBundle.properties: -------------------------------------------------------------------------------- 1 | duplication.title=重复代码分析 2 | duplication.enabled=启用 3 | duplication.scope.name.prefix=分析 4 | duplicate.dialog.title=重复代码分析设置 5 | duplication.progress=重复代码分析 6 | duplication.tab.name=重复 7 | duplication.none.found.message=没有发现重复代码. 8 | duplication.none.found.title=查找重复 9 | duplication.anonymize.literals.checkbox=匿名&常量 10 | duplication.anonymize.types.checkbox=匿名&类型 11 | duplication.anonymize.methods.checkbox=匿名&方法 12 | duplication.anonymize.fields.checkbox=匿名&字段 13 | duplication.anonymize.local.variables.checkbox=匿名本地&变量 14 | duplication.minimum.cost.label=不要显示重复的简单的(duplicates simpler than) 15 | duplication.anonymize.uncommon.label=匿名较简单少见的子表达式 16 | duplicate.anonymize.uncommon.description=(越高的值是它工作得越慢.
大于值 0 abstragate code structure) 17 | duplicate.anonymize.uncommon.outside.scope.checkbox=Visible from &outside of the scope only 18 | duplicate.location.single.line=行 {0} 在 {1} 19 | duplicate.location.multiple.lines=行 {0} 到 {1} 在 {2} 20 | duplicate.location.invalid=无效 21 | duplicates.send.to.left.action=发送到左侧 22 | duplicates.send.to.left.action.description=显示选定的项作为左边的比较版本 23 | duplicates.send.to.right.action=发送到右边 24 | duplicates.send.to.right.action.description=显示选定项作为右边差异版本 25 | duplicates.partially.valid.group.node={0} duplicates 26 | duplicates.single.file.group.node={0} duplicates, Cost: {1} in {2} 27 | duplicates.multiple.files.group.node={0} duplicates, Cost: {1} in {2} 文件 28 | duplicates.searching.progress=搜索重复项: 29 | duplicates.indexing.progress=建立搜索索引 30 | headless.duplocator.opening.project.message=打开项目... 31 | offline.duplicates.no.modules.message=此项目包含没有模块。不能继续进行 32 | offline.duplicates.no.jdk.message=JDK中没有正确对这个项目进行配置,无法进行 33 | offline.duplicates.jdk.not.found=''{0}'' 未找到. 34 | tooltip.tree.text=单击箭头以显示所选的项目作为左/右比较版本 35 | eliminate.duplicates.action.text=消除重复项 36 | duplication.anonymize.variables.checkbox=匿名变量 37 | duplication.anonymize.functions.checkbox=匿名函数 -------------------------------------------------------------------------------- /messages/EditorBundle.properties: -------------------------------------------------------------------------------- 1 | attempt.to.modify.read.only.document.error.message=试图修改只读文档 2 | typing.in.editor.command.name=键入 3 | errors.panel.go.to.errors.first.radio=只转到高优先级问题 4 | errors.panel.go.to.next.error.warning.radio=转到下一个问题 5 | customize.highlighting.level.menu.item=高亮显示自定义级别 6 | move.caret.command.name=移动插入符 7 | 8 | guarded.block.modification.attempt.error.message=无法执行操作,因为它将更改当前文档的只读片段 9 | guarded.block.modification.attempt.error.title=Guarded Block Modification Attempt 10 | close.editor.annotations.action.name=关闭注释 11 | editor.annotations.action.group.name=注释 12 | move.cursor.command.name=移动光标 13 | paste.command.name=粘贴 14 | move.selection.command.name=移动所选内容 15 | typing.command.name=键入命令 16 | hector.import.popup.checkbox=&Import弹出窗口 17 | hector.highlighting.level.title=高亮级别 18 | hector.none.slider.label=None 19 | hector.syntax.slider.label=语法 20 | hector.inspections.slider.label=检查 21 | action.duplicate.block=&复制块 22 | action.duplicate.line=&复制行 23 | increase.editor.font=增加字体大小 24 | decrease.editor.font=减小字体大小 -------------------------------------------------------------------------------- /messages/EvaluationFeedbackRequest.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Evaluation Feedback

4 |

We need you for 5 seconds. This will be the only time you see this screen, we promise! 5 | 6 |

It's been ### days since you started evaluating, and your opinion is really valuable to us. 7 |

    8 |
  • If you have any technical questions that you would like to ask
  • 9 |
  • If you would like to tell us about the things you love/hate
  • 10 |
  • If you have questions about licensing or purchasing
  • 11 |
12 | You can use the Help | Submit Feedback menu item at any time later. 13 | 14 |

Thanks! We look forward to helping you out in any way we can. 15 | 16 |

The JetBrains Team 17 |

18 | 19 | 20 | -------------------------------------------------------------------------------- /messages/FileTypesBundle.properties: -------------------------------------------------------------------------------- 1 | filetype.plaintext.description=文本文件 2 | filetype.chooser.title=注册新文件类型关联 3 | filetype.chooser.prompt=这文件 ''{0}'' 不与任何文件类型关联,请定义关联: 4 | filetype.registered.patterns.group=注册模式 5 | filetype.registered.pattern.remove.button=&移除 6 | filetype.registered.pattern.add.button=&添加... 7 | filetype.settings.title=文件类型 8 | filetype.edit.existing.title=编辑文件类型 9 | filetype.edit.new.title=新文件类型 10 | filetype.edit.add.pattern.prompt=输入新通配符('*' and '?' allowed): 11 | filetype.edit.add.pattern.title=添加通配符 12 | filetype.edit.edit.pattern.title=编辑通配符 13 | filetype.edit.add.pattern.exists.error=这个通配符是保留给 ''{0}'' 文件类型,不能被分配 14 | filetype.edit.add.pattern.exists.message=此通配符已经注册了 ''{0}'' 文件类型 15 | filetype.edit.add.pattern.reassign.button=&重新指派通配符 16 | filetype.edit.add.pattern.exists.title=添加通配符 17 | filetype.settings.component=文件类型 18 | filetype.settings.cannot.save.error=无法保存的文件类型: {0} 19 | filetype.settings.cannot.save.title=错误保存设置 20 | filetype.settings.no.patterns=没有注册的文件模式 21 | filetypes.recognized.group=识别的文件类型 22 | filetypes.recognized.add.button=&添加... 23 | filetypes.recognized.remove.button=&移除 24 | filetypes.recognized.edit.button=&编辑... 25 | filetype.chooser.file.pattern=&文件模式: 26 | -------------------------------------------------------------------------------- /messages/GraphBundle.properties: -------------------------------------------------------------------------------- 1 | graph.framework.printing.options=打印选项 2 | graph.framework.printing.poster.rows=Poster行 3 | graph.framework.printing.poster.cols=Poster列 4 | graph.framework.printing.poster.coords=添加Poster Coords 5 | graph.framework.printing.view=查看 6 | graph.framework.printing.graph=图表 7 | graph.framework.printing.clip.area=删除区域 8 | graph.framework.printing.general=通用 9 | graph.framework.printing.title=标题 10 | graph.framework.printing.title.text=文本 11 | graph.framework.printing.title.color=标题颜色 12 | graph.framework.printing.title.text.color=文本颜色 13 | 14 | graph.delete.message=删除选择 15 | graph.delete.message.caption=删除 16 | -------------------------------------------------------------------------------- /messages/JamBundle.properties: -------------------------------------------------------------------------------- 1 | confirmation.text.delete.element=Delete {0}? 2 | message.title.deleting.element=Deleting {0} 3 | command.name.deleting.element=Deleting {0} 4 | local.vcs.action.name.deleting.element=Deleting {0} 5 | model.delete.items=items 6 | 7 | unnamed.element.presentable.name= 8 | 9 | column.name.elements.to.delete=Elements to Delete 10 | dialog.title.select.elements.to.delete=Select Elements to Delete 11 | button.delete=&Delete 12 | button.do.not.delete=Do &Not Delete 13 | postfix.not.physical.element=nonexistent 14 | 15 | this.0.1.belongs.to.2.search.usages.2=This {0} ''{1}'' belongs to {2}.\nDo you want to search for the {2} usages instead? 16 | confirmation.text.0.1.belongs.to.2.rename.2={0} ''{1}'' belongs to {2}.\nDo you want to rename {2} instead? 17 | dialog.title.rename.0.classes=Rename {0} Classes -------------------------------------------------------------------------------- /messages/JavadocBundle.properties: -------------------------------------------------------------------------------- 1 | javadoc.generate.start.button=&Start 2 | javadoc.generate.package.default= 3 | javadoc.generate.title=Generate JavaDoc 4 | javadoc.generate.scope.whole.project=&Whole project 5 | javadoc.generate.scope.package=&Package{0} 6 | javadoc.generate.scope.include.subpackages.checkbox=Include subpackages 7 | javadoc.generate.settings.group=Settings 8 | javadoc.generate.output.directory.not.specified=Output directory is not specified. 9 | javadoc.generate.output.directory.not.exists=Output directory \"{0}\" does not exist\nDo you want to create it? 10 | javadoc.generate.message.title=JavaDoc 11 | javadoc.generate.output.directory.creation.failed=Creation of \"{0}\" failed. 12 | javadoc.generate.output.not.a.directory=\"{0}\" is not a directory. 13 | javadoc.generate.open.in.browser=Open &generated documentation in browser 14 | javadoc.generate.heap.size=&Maximum heap size (Mb): 15 | javadoc.generate.output.directory=Output &directory: 16 | javadoc.generate.scope.group=Scope 17 | javadoc.generate.tags.group=Document these tags 18 | javadoc.generate.tag.list.deprecated=deprecated list 19 | javadoc.generate.basic.option=Basic options 20 | javadoc.generate.options.index.per.letter=Separate index per letter 21 | javadoc.generate.options.index=Generate index 22 | javadoc.generate.options.navigator=Generate navigation bar 23 | javadoc.generate.options.hierarchy=Generate hierarchy tree 24 | javadoc.generate.arguments=&Other command line arguments: 25 | javadoc.settings.title=Javadoc 26 | javadoc.settings.not.specified=Generation options for javadoc not specified 27 | javadoc.generate.no.jdk.path=JDK path is not specified\nCannot generate JavaDoc 28 | javadoc.generate.no.classes.in.selected.packages.error=Selected scope contain no Java classes 29 | javadoc.generate.exited=\njavadoc exited with exit code $EXIT_CODE$\n 30 | javadoc.generate.output.directory.browse=Browse Output directory 31 | javadoc.generate.locale=&Locale: 32 | javadoc.generate.closing.tag=Automatically insert closing tag -------------------------------------------------------------------------------- /messages/LangBundle.properties: -------------------------------------------------------------------------------- 1 | java.terms.anonymous.class=匿名类 2 | java.terms.class=类 3 | java.terms.package=包 4 | java.terms.type.parameter=类型参数 5 | java.terms.method=方法 6 | java.terms.field=字段 7 | java.terms.parameter=参数 8 | java.terms.variable=变量 9 | java.terms.interface=接口 10 | java.terms.exception=异常 11 | java.terms.static.initializer=静态初始化 12 | java.terms.instance.initializer=实例初始化 13 | java.terms.enum=枚举 14 | java.terms.annotation.interface=@接口 15 | java.terms.label=标签 16 | java.terms.constructor=构造函数 17 | terms.directory=目录 18 | terms.file=字段 19 | java.terms.of.anonymous.class={0} 的匿名类 20 | java.terms.of.interface={0} 的接口 {1} 21 | java.terms.of.enum={0} 的枚举{1} 22 | java.terms.of.annotation.type={0} 的注释类型 {1} 23 | java.terms.of.class={0} 的类 {1} 24 | java.terms.variable.of.method={0} 的 {1} 25 | java.terms.expression=表达式 26 | terms.property=属性 27 | unexpected.token=意外令牌 28 | unexpected.eof=文件意外结束 29 | 30 | completion.no.suggestions=没有建议 31 | completion.quick.javadoc.ad=你知道吗,快速查看文档 ({0}) 工程完成查找,以及? 32 | completion.quick.implementations.ad=你知道吗,快速定义视图 ({0})工作在完成查找,以及? 33 | completion.dot.etc.ad=圆点、 分号和一些其他的键也将关闭此查找和插入到编辑器 34 | completion.smart.enter.ad=使用 {0} 补全后面语法正确的代码(括号平衡等) 35 | 36 | xml.terms.tag=标签 37 | xml.terms.entity=实体 38 | xml.terms.xml.tag=XML 标签 39 | xml.terms.attribute=属性 40 | xml.terms.attribute.value=属性值 41 | xml.terms.variable=变量 42 | error.cannot.resolve=无法解析 43 | dialog.template.data.language.caption=\ 44 | 模板数据语言是基础语言模板文件中像那些FreeMarker/Velocity的框架.
\ 45 | 要更改模板数据语言设置 使用{0} 一个文件、目录或整个项目, \ 46 | 单击某个项目,然后选择从模板数据语言列表中选择语言.

\ 47 | Note:
\ 48 | 如果没有指定,文件和目录继承父模板数据语言设置.
49 | template.data.language.configurable=模板数据语言 50 | template.data.language.configurable.tree.table.title=模板数据语言 51 | template.data.language.override.warning.text=对于子目录有指定的模板数据语言. 覆盖这些文件? 52 | template.data.language.override.warning.title=重写子目录中的模板数据语言 53 | quickfix.change.template.data.language.text=更改 {0} 模板数据语言到... 54 | incorrect.name=不正确的名称 55 | -------------------------------------------------------------------------------- /messages/LicenseCommonBundle.properties: -------------------------------------------------------------------------------- 1 | license.agreement.title=许可协议 2 | license.agreement.title.for=许可协议 {0} 3 | button.ok=确定 4 | button.cancel=取消 5 | license.agreement.prompt=请仔细阅读以下许可协议.
若要继续,您必须同意本许可协议的所有条款对应的复选框. 6 | license.agreement.accept.checkbox=接受许可的所有条款 -------------------------------------------------------------------------------- /messages/StatisticsBundle.properties: -------------------------------------------------------------------------------- 1 | stats.title=有助于改善 {0} 通过发送匿名使用统计 {1} 2 | 3 | stats.config.allow.send.stats.text=允许发送使用情况统计 {0} 4 | stats.config.details=我们要求你允许发送关于你的插件配置信息(什么是启用
和什么是关闭)和功能使用统计数据 (例如如何频繁地使用的代码完成).\ 5 |
此数据是匿名的不包含任何收集的个人信息,仅供使用由{0}
永远不会转交给任何第三方. -------------------------------------------------------------------------------- /messages/VfsBundle.properties: -------------------------------------------------------------------------------- 1 | url.parse.unhandled.exception=无法解析url,引发未处理的异常 2 | url.parse.error=无法解析url{0} 3 | file.create.already.exists.error=无法创建文件 {0}/{1}. 文件已经存在. 4 | file.read.error=无法从文件读取 {0}. 5 | file.write.error=无法写入文件 {0}. 6 | file.delete.root.error=不能删除根文件 {0}. 7 | jar.copy.progress=复制 {0}... 8 | jar.copy.error.message=无法复制 ''{0}'' 到 ''{1}''.\n原因: {2}. 9 | jar.copy.error.title=错误复制文件 10 | jar.modification.not.supported.error=不能修改JAR或ZIP文件 {0} 11 | file.synchronize.progress=同步文件... 12 | 13 | cannot.load.remote.file=无法加载 ''{0}'': {1} 14 | downloading.cancelled.message=下载取消 15 | cannot.create.local.file=无法创建本地文件: {0} 16 | download.progress.connecting=连接到 ''{0}''... 17 | download.progress.downloading=下载中 ''{0}''... 18 | 19 | file.invalid.name.error=无效文件名: \"{0}\" 20 | directory.invalid.name.error=无效的目录名: \"{0}\" 21 | directory.create.wrong.parent.error=不是目录. 不能创建新目录. 22 | file.create.wrong.parent.error=不是目录. 不能创建新文件. 23 | file.already.exists.error=无法创建文件 ''{0}''. 文件已存在. 24 | dir.already.exists.error=无法创建目录 ''{0}''. 目录已存在. 25 | invalid.directory.create.files=无效目录. 无法创建文件. 26 | file.delete.error=无法删除文件 {0}. 27 | file.move.error=无法移动文件到 {0} 28 | file.copy.error=无法复制文件到 {0} 29 | file.copy.target.must.be.directory=无法复制,目标必须是目录. 30 | cannot.rename.root.directory=不能重命名根目录. -------------------------------------------------------------------------------- /native2ascii.py: -------------------------------------------------------------------------------- 1 | #coding: utf-8 2 | """ 3 | 转换文件中unicode编码为ascii码表示 4 | """ 5 | __author__ = 'erawtfos' 6 | 7 | import os 8 | import re 9 | import subprocess 10 | 11 | BASE_DIR = os.path.dirname(__file__) 12 | 13 | 14 | def transcoding(file=""): 15 | """ 16 | 转换unicode编码为ascii码表示 17 | :param file: 要转换的文件路径 18 | """ 19 | outfile = file.replace(".properties", "_zh_CN.properties") 20 | with open(file, "rb")as f: 21 | with open(outfile, "wb") as out: 22 | for line in f.readlines(): 23 | text = ascii(line.decode().replace('\n', "")) 24 | text = re.sub("^'|'$|\"$|^\"", "", text) 25 | out.write(text.encode()) 26 | out.write(b"\n") 27 | 28 | 29 | def abspath(path="", ExtName=""): 30 | """ 31 | 获取指定目录中完整的文件路径 32 | :param path: 路径 33 | :param ExtName: 文件扩展名 34 | :return: 返回完整路径列表 35 | """ 36 | 37 | list = os.listdir(path) 38 | pathlist = [] 39 | for filename in list: 40 | curpath = os.path.join(path, filename) 41 | if curpath.endswith(ExtName): 42 | pathlist.append(curpath) 43 | return pathlist 44 | 45 | 46 | if __name__ == '__main__': 47 | path = os.path.join(BASE_DIR, "messages") 48 | #要转换文件所在文件夹 49 | for i in abspath(path, ".properties"): 50 | transcoding(i) 51 | 52 | try: 53 | subprocess.call("jar -cvf resources_zh_CN.jar .") 54 | #在当前文件夹生成语言包 55 | except FileNotFoundError: 56 | print("没找到jar命令,把jar路径加入环境变量再运行") 57 | -------------------------------------------------------------------------------- /tips/AdaptiveWelcome.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

欢迎PyCharm效率指南

7 |

8 | PyCharm记录哪些你正在使用并会为您提供一些提示,让你知道关于该功能及其特征你可能已经错过. 这些提示将显示在启动过程中. 9 | 通过在菜单栏上选取 Help | Productivity Guide您随时可以返回到其中 10 |

11 | 12 | 13 | -------------------------------------------------------------------------------- /tips/AnnotationsAndDiffs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | Version control annotations show the latest changes of each line in one click.

8 |

9 | Just right-click an annotation and use the Show Diff command in the context menu.

10 |

11 |

12 | 13 | -------------------------------------------------------------------------------- /tips/BreakpointSpeedmenu.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | 对一个断点(左侧装订线)右键单击调用上下文菜单, 8 | 您可以快速启用/禁用断点或调整其属性.

9 |

10 |

11 | 12 | 13 | -------------------------------------------------------------------------------- /tips/BuiltInServer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

它很容易更改该内置web服务器端口 (File | Settings – Debugger – JavaScript), 9 | 并使用"内置服务器端口"微调框设置新值.

10 |

11 |

接下来,在您的浏览器中打开HTML页,并看到它在定义的端口上运行.

12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/CamelHumpsInCodeCompletion.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | When in the Code Completion lookup, you can ease the search by filtering the list with the help of the "camel words" prefixes.

8 |

9 |

10 | 11 | 12 | -------------------------------------------------------------------------------- /tips/CamelPrefixesInNavigationPopups.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

When in the Go to Class, 9 | Go to Symbol, or 10 | Go to File popup, 11 | you can ease the search by filtering the lookup list with the help of the "camel words" prefixes.

12 |

13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/CancelByControlArrows.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | When an autopopup completion is active, 8 | &shortcut:EditorLookupDown; and &shortcut:EditorLookupUp; 9 | will close it and move the caret down or up in the editor. 10 |

11 | 12 | 13 | -------------------------------------------------------------------------------- /tips/ChangeSorting.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | 您可以使用在右下角的图标按字母顺序或按相关性排序完成变量之间的切换: 8 |

9 |

10 | 11 | 12 | -------------------------------------------------------------------------------- /tips/ChangesView.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

The Changes tool window shows all deleted, modified, and unversioned files in a single view. 7 | Use &shortcut:ActivateChangesToolWindow; keyboard shortcut to show or hide this tool window.

8 |

From the Changes tool window you can perform all the necessary version control actions: commit changes, manage changelists, put resources under version control, examine differences and more.

9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /tips/CheckRegExp.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

The format of a regular expression can be rather complicated. 7 | To make sure you didn't miss some slash of quotation mark, place the caret 8 | somewhere in the expression you want to check, and press &shortcut:ShowIntentionActions;.

9 |

In the pop-up frame type a string that you think should match your regular expression. If the background turns green, you are lucky. If it turns red, then you have to look for a mistake.

10 |

11 |

12 | 13 | -------------------------------------------------------------------------------- /tips/ClassNameCompletion.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | A special variant of the Code Completion feature invoked by pressing &shortcut:CodeCompletion; twice allows you to 8 | complete the name of any class 9 | no matter if it was imported in the current file or not. 10 | If the class is not imported yet, the import statement is generated automatically.

11 |

12 |

13 | 14 | 15 | -------------------------------------------------------------------------------- /tips/ClipboardStack.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

Use the &shortcut:PasteMultiple; shortcut to choose and insert recent clipboard contents into the text.

9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tips/CloseOthers.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | There are two ways of closing all tabs in the editor, except the current one:

8 |
    9 |
  • First, right-click the editor tab, and choose Close Others on the context menu.
  • 10 |
  • Second, keeping the Alt key pressed, click on the editor tab.
  • 11 |
12 |

13 |

14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/CodeCompletion.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | The Code Completion feature lets you quickly complete different kinds of statements 8 | in the code. 9 | For example, start typing a class name and press &shortcut:CodeCompletion; 10 | to complete it. 11 | When multiple choices are available, they are shown in the lookup list.

12 |

13 |

14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/CodeCompletionInSearch.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

When you are finding text in the current file (&shortcut:Find;), you don't need to type the whole search string: 9 | Basic Code Completion is available in the search field. Start typing, press &shortcut:CodeCompletion;, and 10 | select the desired string from the suggestion list.

11 | 12 |

13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/CodeCompletionMiddle.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

When using basic code completion (&shortcut:CodeCompletion;), 9 | type any characters that exist anywhere in an identifier. 10 |

11 | 12 |

13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/CodeCompletionNoShift.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | When using basic code completion (&shortcut:CodeCompletion;), 8 | you don't need to type upper-case letters in CamelHump names. 9 | It is enough to type the initial letters of the camel names in lower case, and they will be smartly recognized.

10 |

11 |

12 |

This behavior is enabled, if None is selected from the 13 | Case sensitive completion drop-down list (the 14 | Code Completion page of the Editor settings). 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/ColorEditingInCss.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

&productName; 9 | simplifies your work 10 | with colors in CSS files. The color 11 | properties have the icons of the corresponding color in the left gutter area of the editor. 12 |

13 |

Click color icons to choose the desired color from the color picker.

14 |

15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /tips/ColorFiles.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

You don't need to guess which index.html file you are looking at...

8 | 9 |

10 | Make the editor tabs and lines in navigation lists stand out using the File Colors page of the project settings. 11 |

12 | 13 |

14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/ColumnSelection.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

You can easily make column selection by dragging your mouse pointer while keeping the 7 | Alt key pressed. 8 |

9 |

10 | 11 | 12 | -------------------------------------------------------------------------------- /tips/Comment.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | You can comment and uncomment lines of code using &shortcut:CommentByLineComment;.

8 |

9 | &shortcut:CommentByLineComment; comments or uncomments the current line or 10 | several selected lines with single line comments ({# in Django templates, 11 | or # in Python scripts).

12 |

13 | Pressing &shortcut:CommentByBlockComment; for a selected block of source code 14 | in a Django template surrounds the block with {% comment %} 15 | and {% endcomment %} tags.

16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/CommitCtrlK.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | The keyboard shortcut Ctrl+K enables you to quickly invoke the Commit Changes dialog.

8 |

9 | This dialog shows all modifications in project, gives summary information of file status and suggests improvements before check-in.

10 | 11 | 12 | -------------------------------------------------------------------------------- /tips/CompletionInHTML.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

You can use Basic Completion 9 | (&shortcut:CodeCompletion;) in HTML, CSS and JavaScript files, for completing attributes, 10 | parameters, tags, selectors, etc.

11 |

12 |

13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/ConfiguringTerminal.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

For the embedded local terminal, you can define your favorite shell, 9 | default tab name, and other settings. 10 | Choose 11 | File | Settings (Windows/*nix) or 12 | PyCharm | Preferences (Mac) 13 | on the main menu, and then open the page Terminal.

14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/Consoles.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | You can work in the Python or Django shell without leaving the IDE. 8 | Just choose Run Python Console or Run Django Console 9 | in the Tools menu.

10 | 11 | -------------------------------------------------------------------------------- /tips/ConsolesCodeCompletion.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | Working in the interactive consoles, you don't need to memorise the command line syntax or available functions. 8 | Instead, you can use the familiar code completion &shortcut:CodeCompletion;. 9 | Moreover, from within the lookup list, you can press &shortcut:QuickJavaDoc; 10 | to view the item's documentation.

11 |

12 |

13 | 14 | -------------------------------------------------------------------------------- /tips/ConsolesHistory.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | If you have already spent some time working in the interactive consoles, 8 | you don't need to re-type the previously entered commands to repeat them. 9 | Instead, press &shortcut:EditorScrollUp; and 10 | &shortcut:EditorScrollDown; to scroll through 11 | the history of commands.

12 | 13 | 14 | -------------------------------------------------------------------------------- /tips/CopyWithNoSelection.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

9 | If nothing is selected in the editor, and you press &shortcut:$Copy;, then the whole line at caret is copied to the clipboard. 10 |

11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /tips/CtrlD.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

&shortcut:EditorDuplicate; in the editor duplicates the selected block or the current line 9 | when no block is selected.

10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /tips/CtrlDotInLookups.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

9 | When using autopopup Code Completion, you can select the first item using &shortcut:EditorChooseLookupItemDot;. 10 | The selected name is automatically entered in the editor followed by dot.

11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/CtrlShiftI.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

Use &shortcut:QuickImplementations; 9 | (View | Quick Definition), 10 | to quickly review definition or content of the symbol at caret, without the need to open it 11 | in a new editor tab.

12 |

13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/CtrlShiftIForLookup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

The Quick Definition Viewer 9 | (&shortcut:QuickImplementations;) can be also used for items in lookup lists that appear on code 10 | completion and class/file/symbol navigaton commands.

11 |

12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/CtrlW.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

&shortcut:EditorSelectWord; (select word) in the editor selects the word at the caret 9 | and then selects expanding areas of the source code. For example, it may select a method name, 10 | then the expression that calls this method, then the whole statement, then the containing block, etc. 11 | You can also select the word at the caret and the expanding areas of the source code by double-clicking the target areas in the editor.

12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/DirDiff.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | To compare two directories, select one or both of them in the Project view and 8 | press &shortcut:CompareDirs;.

9 | 10 | -------------------------------------------------------------------------------- /tips/DotEtcInLookups.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

9 | When using Code Completion, you can accept the currently highlighted selection in the popup list 10 | with the period character (.), comma (,), 11 | semicolon (;), space and other characters.

12 |

13 | The selected name is automatically entered in the editor followed by the entered character.

14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /tips/DragToOpen.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

You can easily open an external file for editing, if you just drag it from the Explorer or Finder to the editor.

8 | 9 | 10 |

11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /tips/EditRegExp.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

You can avoid escaping backslashes in your regular expressions. Start typing a regular expression, then press &shortcut:ShowIntentionActions; and choose Edit RegExp. 8 | The regular expression opens in a separate tab in the editor, where you can type backslashes as is.

9 |

All changes are synchronized with the original regular expression, and escapes are presented automatically. When ready, just press &shortcut:EditorEscape; to close the regular expression editor.

10 |

11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /tips/Emmet.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

Speed up HTML, XML or CSS development with Emmet.

7 |

Enable this framework in the Emmet(Zen Coding) page of the Settings/Preferences dialog:

8 |

9 |

10 | 11 | -------------------------------------------------------------------------------- /tips/EnterDirectoryInGotoFile.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

You can jump directly to any deeply buried file, if you press &shortcut:GotoFile;, and type just a couple 9 | of characters of the enclosing directories and file names:

10 | 11 |

12 | 13 |

Use either a slash or a backslash as a delimiter.

14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/Escape.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

The &shortcut:EditorEscape; key in any tool window moves the focus to the editor.

9 |

&shortcut:HideActiveWindow; moves the focus to the editor and also hides the current (or last active) tool window.

10 |

The &shortcut:JumpToLastWindow; key moves the focus from the editor to the last focused tool window.

11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/EvaluateExpressionInEditor.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

To easily evaluate the value of any expression while debugging the program, select its text in the editor 9 | (you might want to press a &shortcut:EditorSelectWord; a few times to efficiently perform this operation) 10 | and then press &shortcut:EvaluateExpression;.

11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/ExcludeFromProject.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | You can exclude any file from your project. As a result, such a file will be ignored by indexing, inspection and code completion.

8 |

9 | In the Project tool window, select the file you want to ignore, and choose 10 | Mark as plain text in its context menu.

11 |

12 | If necessary, you can always return the file to its original type using the 13 | Mark as <file type> context menu command.

14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/ExtractVariable.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

The Extract Variable 9 | refactoring helps you simplify complicated statements in your code. For example, in the code fragment below, 10 | you can select an expression in the code, and press &shortcut:IntroduceVariable; (Refactor | Extract | Variable).

11 |

12 |

13 | This will result in the following:

14 |

15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /tips/FileStructurePopup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

You can quickly navigate in the currently edited file with &shortcut:FileStructurePopup; 9 | (Navigate | File Structure).

10 |

It shows the list of members of the current class. Select an element you want to navigate to and press the 11 | Enter key or the &shortcut:EditSource; key.

12 |

To easily locate an item in the list, just start typing its name.

13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/FindReplaceToggle.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

It is very easy to toggle between find and replace functionality.

8 |

When you perform search and replace in a file, pressing &shortcut:Find; 9 | shows the search pane. Pressing &shortcut:Replace; adds field, where you can type the replace string.

10 | 11 |

While in the Find in Path dialog, you can switch to 12 | replace by pressing &shortcut:ReplaceInPath;. Same way, press &shortcut:FindInPath; to hide the 13 | Replace with field, and switch to mere search.

14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/FindUsages.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | You can quickly find all places where a particular class, method or variable is used in the whole project 8 | by positioning the caret at the symbol's name or at its usage in code and pressing &shortcut:FindUsages; 9 | (Find Usages 10 | in the popup menu).

11 | 12 | 13 | -------------------------------------------------------------------------------- /tips/FinishByControlEnter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | &shortcut:EditorChooseLookupItemAlways; will 8 | choose the first item of the autopopup completion when there is no selection there.

9 | 10 | 11 | -------------------------------------------------------------------------------- /tips/GoToAction.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

To quickly find a menu command or toolbar action, you do not need to look through the menus. Just press 9 | &shortcut:GotoAction; 10 | (Help | Find Action on the main 11 | menu) and start typing the name of the action. Choose the desired action from the suggestion list.

12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/GoToClass.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | To open any class in the editor quickly, press &shortcut:GotoClass; 8 | (Navigate | Class) 9 | and start typing the name of the class. Choose the class from a drop-down list that appears.

10 |

11 |

12 |

13 | You can open any file in your project in a similar way by using &shortcut:GotoFile; 14 | (Navigate | File)

15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/GoToDeclaration.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

To navigate to the declaration of a class, method or variable used somewhere in the code, 9 | position the caret at the usage and press &shortcut:GotoDeclaration;. You can also click the mouse 10 | on usages with the Ctrl 11 | key pressed to jump to declarations.

12 |

13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/GoToInspection.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

To quickly find and run an inspection, press 9 | &shortcut:RunInspection; 10 | and start typing the name of the inspection or its group. Choose the desired inspection from the suggestion list and 11 | then specify the desired scope.

12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/GoToSymbol.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

To open any particular method or field in the editor quickly, press &shortcut:GotoSymbol; 9 | (Navigate | Symbol) 10 | and start typing its name.

11 |

Choose symbol from the drop-down list that appears.

12 |

13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/GotoLineInFile.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | To open any class or file in the editor at the desired line, press &shortcut:GotoFile; 8 | (Navigate | File), 9 | start typing the name, and choose the one from the suggestion list. 10 | Then type the colon (:) and a line number.

11 |

12 | The selected file will open with the caret at the specified line.

13 |

14 |

15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/HierarchyBrowser.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | To see the inheritance hierarchy for a selected class, 8 | press &shortcut:TypeHierarchy; 9 | (Navigate | Type Hierarchy). 10 | You can also invoke the hierarchy view right from the editor 11 | to see the hierarchy for the currently edited class.

12 |

13 |

14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/HighlightUsagesInFile.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

Use &shortcut:HighlightUsagesInFile; (Edit | Find | Highlight Usages in File) 9 | to quickly highlight usages of some variable in the current file.

10 |

Use &shortcut:FindNext; and &shortcut:FindPrevious; keys to navigate through highlighted usages.

11 |

Press &shortcut:EditorEscape; to remove highlighting.

12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/HorizontalScrolling.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | Enable the horizontal scrolling with the mouse wheel by holding 8 | the Shift key.

9 | 10 | -------------------------------------------------------------------------------- /tips/ImageFileCompletion.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

Use Basic Completion 9 | (&shortcut:CodeCompletion;) within HTML, CSS and other files, for completing image file names.

10 |

11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/ImagesLookup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

You can quickly view the image referenced at caret by using the 9 | Quick Definition 10 | (&shortcut:QuickImplementations;). The underlying image will be opened in a popup instead of a separate editor tab.

11 |

12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/Interpreter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

PyCharm allows configuring Python interpreters on the various stages of development:

7 |
    8 |
  • When a project is only being created (File | New Project, or Create New Project on the Welcome screen).
  • 9 |
  • In an already existing project (File | Settings - Python Interpreters).
  • 10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /tips/IntroduceVariable.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

The Extract Variable 9 | refactoring helps you simplify complicated statements in your code. For example, in the code fragment below, 10 | you can select an expression in the code:

11 |

12 |

and press &shortcut:IntroduceVariable; (Refactor | Extract Variable). 13 | This will result in the following:

14 |

15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /tips/IssueNavigation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |

&productName; lets you jump from your check-in comment to an issue in your task tracker.

10 |

All you have to do is to define issue navigation patterns on the 11 | Version Control page of the Settings/Preferences 12 | dialog:

13 |

14 |

When you commit a changelist, and type the check-in comment, make sure it matches one of your issue navigation patterns. 15 | Later, when you browse through the changelists in the repository, such comments turn into hyperlinks:

16 |

17 |

Clicking a hyperlink brings you directly to an issue in your task tracker.

18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /tips/JoinLines.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | The &shortcut:EditorJoinLines; shortcut joins two lines 8 | into one and removes unnecessary spaces to match your code style.

9 | 10 | 11 | -------------------------------------------------------------------------------- /tips/JumpToLastEdit.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

&shortcut:JumpToLastChange; (Navigate | Last Edit Location) 9 | brings you back to the last place where you made changes in the code.

10 |

Pressing &shortcut:JumpToLastChange; a few times moves you deeper into your changes history.

11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/LaunchConsole.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | While debugging, you might need an interactive console at hand... This is most easy. 8 | During the debugging session, switch to the Debugger Console, 9 | and then press the very lowest button in its toolbar. 10 |

11 |

The console becomes interactive, and shows a prompt, where you can enter commands, and view output.

12 |

launch_console_in_debugger

13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/LineEndings.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

To view which line separators style is used in the current file, 7 | look at the Status Bar:

8 | 9 |

10 |

To change the current line ending style, just click the spinner.

11 | 12 | -------------------------------------------------------------------------------- /tips/LineEndingsFolder.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

You do not need to open a file in the editor to change its line separator style. 7 | Use the Project tool window instead: select one or more files, 8 | or folders, point to File | Line Separators on the main menu, 9 | and then choose the desired line ending style.

10 |

For a directory, new line separator applies recursively.

11 |

12 | 13 | -------------------------------------------------------------------------------- /tips/LiveTemplates.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | Live Templates let you generate many typical code constructs in seconds. For example, type 8 | for in a Django template

9 |

10 |

11 |

12 | and then press the Tab key to see what happens.

13 |

14 |

15 |

16 | Use the Tab key to move between the template fields.

17 |

See Live Templates page of the Settings / Preferences 18 | dialog for more details.

19 | 20 | 21 | -------------------------------------------------------------------------------- /tips/LiveTemplatesDjango.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

If you are going to use Django live templates, make sure that Django is selected 7 | as the default Python template language in the Settings / Preferences dialog: 8 |

9 |

10 |

11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /tips/LocalVCS.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

To see your local history of changes in a file, invoke 9 | Local History | Show History 10 | from the context menu. You can navigate through different file versions, see the differences and roll back to any previous version.

11 |

Use the same context menu item to see the history of changes on a directory. You will never lose any code with this feature!

12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/Managepy.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | The easiest way to run a utility of the manage.py task is to 8 | choose Run manage.py Task in the 9 | Tools menu, or press &shortcut:Django.RunManageTaskAction;.

10 |

11 | As you type the name of the utility you want to run, the lookup list shrinks 12 | to show the matching entries only.

13 |

14 | If you type an asterisk, PyCharm will show the complete list of all the available tasks.

15 |

16 |

17 | 18 | 19 | -------------------------------------------------------------------------------- /tips/MenuItemsDescriptions.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

To help you learn the purpose of each item in the main menu, its short description is shown in the status 9 | bar at the bottom of the application frame when you position the mouse pointer over this item.

10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /tips/MethodSeparators.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

To show separator lines between methods in the editor, open the editor settings 9 | and select the Show method separators check box in the 10 | Appearance page.

11 | 12 |

13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/MethodUpDown.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

Use &shortcut:MethodUp; and &shortcut:MethodDown; keys to quickly move between methods in the editor.

9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tips/MoveToChangelist.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |

If you don't want to commit some of your changes to the repository, you can set them aside for a while, by moving 10 | to a separate changelist, or by putting them to a shelf. Select such file in the Local tab of the Changes tool 11 | window, and on the context menu choose Move to another changelist, 12 | or Shelve Changes.

13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/MoveUpDown.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | The Code | Move Statement Up/Down action is useful for reorganizing the code lines 8 | in your file, e.g., for bringing a variable declaration closer to the variable usage.

9 |

10 | For example, select a code fragment and press &shortcut:MoveStatementUp; or 11 | &shortcut:MoveStatementDown;.

12 |

13 | Before:

14 |

15 |

16 |

17 | After moving the lines up:

18 |

19 |

20 |

21 | After moving the lines down:

22 |

23 |

24 |

25 | When there is no selection, the line at the cursor will be moved.

26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /tips/MultipleProjects.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

&productName; can work with several projects in one window. 9 | To open a project in the same window with the already opened one, choose 10 | Open directory, then in the Open project 11 | dialog box, select the option 12 | Open in current window, and select the check box 13 | Add to currently opened projects.

14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/NavBar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

Navigation bar is a quick alternative to the Project view.

9 |

Use &shortcut:ShowNavBar; keyboard shortcut to show the navigation bar, and arrow keys to locate the necessary files or folders.

10 | 11 | 12 | 13 |

14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/NavigateToFilePath.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

Ctrl+Click (on Windows) or Cmd+Click (on MacOS) a tab in the editor to navigate to any part of the file path. 9 | Select the necessary element in the drop-down, and the corresponding file path opens in an external browser 10 | (e.g., in the Explorer, if your OS is Windows).

11 |

12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/OverrideImplementMethods.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | You can easily override the methods of the base class by pressing 8 | &shortcut:OverrideMethods; (Code | Override Methods).

9 |

10 |

11 | 12 | 13 | -------------------------------------------------------------------------------- /tips/ParameterInfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

If the cursor is between the parentheses of a method call, pressing &shortcut:ParameterInfo; brings up 9 | a list of valid parameters.

10 |

11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/PreviewTODO.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

TODO tool window lets you preview each of the 8 | encountered TODO items – just click the preview button on the toolbar.

9 |

10 |

11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /tips/PyColorFiles.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | You don't need to guess which __init__.py or 8 | views.py you are looking at...

9 |

10 | Make the editor tabs and the lines in navigation lists stand out 11 | using the File Colors page of the project settings.

12 |

13 |

14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/QuickFixRightArrow.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

When you press &shortcut:ShowIntentionActions; to invoke a quick fix or intention action, 9 | press the right arrow key to reveal the list of additional options.

10 |

Depending on the context, you can choose to disable inspection, fix all problems, 11 | change inspection profile, etc.

12 |

qfo

13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/QuickJavaDoc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | To quickly see the documentation for the symbol at caret, press &shortcut:QuickJavaDoc; 8 | (View | Quick Documentation).

9 |

10 |

11 | 12 | 13 | -------------------------------------------------------------------------------- /tips/QuickJavaDocInLookups.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

The shortcuts such as &shortcut:QuickJavaDoc; 9 | (View | Quick Documentation), 10 | &shortcut:ParameterInfo; (View | Parameter Info), 11 | &shortcut:GotoDeclaration; (Navigate | Declaration) 12 | and others can be used not only in the editor but in the code completion popup list as well.

13 |

14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /tips/QuickSwitchScheme.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

With a single keystroke, you can apply another code style/coloring scheme or keymap right from the editor. 9 | Just press &shortcut:QuickChangeScheme; 10 | (View | Quick Switch Scheme), 11 | to specify the scheme you want to change.

12 |

13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/RecentChanges.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

Use &shortcut:RecentChanges; to quickly review your recent changes to the project.

9 |

10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /tips/RecentFiles.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

&shortcut:RecentFiles; (View | Recent Files) 9 | brings a popup list of the recently visited files. Choose the desired file and press 10 | Enter to open it.

11 |

12 | 13 |

Besides recent files, you can bring up results of the usage searches you have performed 14 | recently. To do that, use the same &shortcut:RecentFiles; shortcut with the Find tool window having 15 | the focus, and select the desired find usages result from the Recent Find Usages popup.

16 | 17 |

18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /tips/RecentSearch.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |

When searching for a text string in a file, use recent history: with the search pane already open, click 10 | the down arrow to show the list of recent entries. 11 |

12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/RefactorThis.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

If you place the caret at certain symbol and press &shortcut:Refactorings.QuickListPopupAction;, 8 | you will see the list of refactorings applicable to the current context.

9 |

10 |

11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /tips/RemoteInterpreter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

Found yourself in a situation, when you want to use an interpreter located remotely? With 7 | PyCharm it is quite easy.

8 |

To configure a remote interpreter, press &shortcut:ShowProjectStructureSettings;, and 9 | under the Project Settings. open the page Python Interpreters.

10 |

Then press &shortcut:NewElement;, and choose the option Remote:

11 |

add_remote_interpreter

12 | 13 |

You can use this remote interpreter for your project, or just leave it as one of the available interpreters.

14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/Rename.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

You can easily rename your local variables with automatic correction of all places where they are used.

9 |

To try it, place the caret at the variable you want to rename, and press &shortcut:RenameElement; 10 | (Refactor | Rename). 11 | Type the new name in the popup window that appears, or select one of the suggested names, 12 | and press 13 | Enter.

14 |

15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/RenameCssSelector.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

It is possible to rename CSS selectors directly from HTML. Position the caret at 9 | the selector to be renamed and press &shortcut:RenameElement; 10 | (Refactor | Rename).

11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/Reopen.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

To open again one of the recent projects, use Reopen(on Windows and Linux)/Open Recent(on MacOS) 9 | on the File menu:

10 |

11 | 12 |

Another way to reopen a project is to right-click the &productName; icon on the task bar: 13 | 14 |

15 | 16 | 17 |

18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /tips/RunConfigFolders.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

If there are too many run/debug configurations of the same type, you can group them into folders, and thus distinguish them visually.

8 |

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /tips/ScopesInTODO.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

If you are working on a large project, with numerous TODO items, 8 | filter them by scopes.

9 |

Use the Scope-Based tab in the TODO tool window to show only those items 10 | that pertain to the scope of interest.

11 |

12 |

13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/SearchEverywhere.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

Find any action, symbol, or setting in &productName; with 9 | Double Shift:

10 |

. 11 |

You can also click in the upper-right corner of the product window. 12 |

13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/SearchInSettings.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

You can quickly find a setting you need in the Settings/Preferences dialog, without browsing through the numerous options. 9 | Just type some characters that, in your opinion, exist in the option description, and the list of settings will reduce to the 10 | matching ones. Select the desired entry, and see the setting that contains the entered characters highlighted:

11 |

12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/SelectIn.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

To quickly select the currently edited element (class, file, method or field) in any view (Project view, 9 | Structure view or other), 10 | press &shortcut:SelectIn;.

11 |

12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/SelectRunDebugConfiguration.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

By pressing &shortcut:ChooseRunConfiguration; you can access the Run/Debug dropdown on the main toolbar, 9 | without the need to use your mouse.

10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /tips/SelectTasks.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

When working with a lengthy list of tasks, you don't need to delete them one by one. 8 | Select several tasks, using Shift 9 | or Control/Command keys, click the right arrow, and then click 10 | Remove. 11 |

12 |

13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/ShowAppliedStyles.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

You can quickly review all styles currently applied to an HTML tag, by right-clicking the tag name and selecting 9 | Show Applied Styles For Tag 10 | from the context menu:

11 |

12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/ShowHideSideBars.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | If you need more workspace, you can hide the tool windows bars: 8 | click in the lower left corner.

9 |

10 | If necessary, you can show the tool window buttons just for a moment. 11 | To do that, press the key Alt (for Windows/*nix) or 12 | Cmd (for Mac) twice and keep it down. 13 | While the key is pressed, the tool window buttons are visible.

14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/ShowUsages.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

You can bring forward the list of all usages of a class, method or variable across the whole 9 | project, and quickly jump to the selected usage. To do that, place the caret at the symbol's name or at its usage 10 | in code and press &shortcut:ShowUsages; (Edit | Find | Show Usages 11 | in the main menu), scroll the list and click the desired usage.

12 |

13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/SpeedSearch.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

The speed search is available in all the tree views: just start typing and you'll quickly locate the necessary item.

9 |

10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /tips/SpeedSearchinLiveTemplates.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

In the Live Templates settings, use speed search to find templates with certain text in the template abbreviation, body or description.

8 |

Start typing the desired text, and the list of available templates will shrink to show matching templates only:

9 |

10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tips/Spellchecker.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Keep your source code typo-free with the help of the built-in Spellchecker.

8 | 9 |

All texts, including comments, textual strings and literals, are inspected against the pre-defined dictionaries. 10 | All typos are highlighted, which leaves you with the task of choosing the correct word, accepting the current spelling, or disabling inspection.

11 |

Use &shortcut:ShowIntentionActions; to see the list of available actions.

12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/SpellcheckerDictionaries.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

If you lack words in the pre-defined dictionaries, you can create your own ones. A custom dictionary is a mere 8 | textual file with a .dic extension, with each word starting on a new line.

9 |

All you have to do is to point to the directories where your dictionaries are stored, in the 10 | Spelling of the Settings dialog.

11 | 12 | 13 | -------------------------------------------------------------------------------- /tips/Surround.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | When you want to catch exceptions thrown by some code fragment, 8 | select it in the editor, press &shortcut:SurroundWith; 9 | (Code | Surround With) and choose try/except. 10 | This will automatically generate the except clause.

11 |

12 | surround

13 | 14 | 15 | -------------------------------------------------------------------------------- /tips/Switcher.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

Use the Switcher (&shortcut:Switcher;) to switch between open files and tool windows. 9 | Keeping Ctrl pressed, use the Up and Down arrow keys, 10 | Tab or Shift+Tab, Alt for navigation; 11 | use Delete or BackSpace to close editor tab or hide a tool window.

12 |

13 | 14 | 15 | -------------------------------------------------------------------------------- /tips/TabInEditorClose.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

Did you know that you can close tabs in the editor and the tool windows of &productName; without actually 9 | using the context menu commands? 10 | It is enough to point with your mouse cursor to a tab to be closed, and click the middle mouse button, or just 11 | use the Shift+click combination.

12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/TabInLookups.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

When using Code Completion, you can accept the currently highlighted selection in the popup list 9 | with &shortcut:EditorChooseLookupItemReplace; key.

10 |

Unlike accepting with the &shortcut:EditorChooseLookupItem; key, the selected name will overwrite 11 | the rest of the name to the right of the caret. This can be especially useful for replacing one method 12 | or variable name with another.

13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /tips/TagNameCompletion.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | A special variant of the Code Completion feature invoked by pressing &shortcut:CodeCompletion; twice allows you to 8 | complete 9 | XML tag names from namespaces not declared in the current file. 10 | If the namespace is not declared yet the declaration is generated automatically. 11 |

12 | 13 |

14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/Templates.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | It's very easy to navigate between the Django templates and referencing views.

8 |

9 | To do that, use the icons and 10 | in the left gutter of the editor.

11 |

12 |

13 | 14 | 15 | -------------------------------------------------------------------------------- /tips/Terminal.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

You don't need to leave PyCharm to work with your favorite shell. Just choose 9 | Tools | Open Terminal on the main menu, 10 | and enjoy using the embedded local terminal.

11 |

12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /tips/ToolWindowsQuickAccess.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

You can gain quick access to the available tool windows: hover your mouse 9 | pointer over icon in the lower left corner of the IDE window.

10 |

The list of tool windows shows up, leaving you with the task of selecting the desired one:

11 |

12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /tips/VcsQuickList.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

All your most indispensable VCS commands are just one-click away...

8 |

9 | Choose VCS | VCS Operations Popup 10 | on the main menu, and get a popup with the VCS commands that are relevant to the current context: 11 |

12 | 13 |

14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/Welcome.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

欢迎来到PyCharm &majorVersion;.&minorVersion;

7 |

8 | 通过阅读这些提示您可以快速熟悉IDE的主要功能.

9 |

10 | 你可以尝试在提示中描述的功能,同时该对话框在屏幕上保持打开状态。

11 |

12 | 如果您关闭该对话框,您可以随时从 13 | 帮助 | 今日提示菜单栏上打开.

14 | 15 | 16 | -------------------------------------------------------------------------------- /tips/WideScreen.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

Tune the &productName; tool windows layout to make better use of your screen.

9 |

Toggle between the vertical and side-by-side placement of the tool windows by 10 | Ctrl+click (Windows/*nix) or Cmd+click (Mac) on the splitter:

11 | 12 | 13 |

14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/WildcardsInNavigationPopups.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

For the pattern search in the Go to Class, 9 | Go to Symbol and 10 | Go to File pop-up frames, 11 | use * and space symbols.

12 |

* stands for any symbol.

13 |

Space at the end means the end of a pattern, and the preceding string will be considered not just a prefix but a whole pattern. 14 | The list of the suggested names will be reduced accordingly.

15 |

16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /tips/WordCompletion.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

Use Basic Completion 9 | (&shortcut:CodeCompletion;) for completing words in text and comments in files of many different types.

10 |

All the words from the current file that start with the typed prefix will appear in the lookup list.

11 |

12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tips/css/tips.css: -------------------------------------------------------------------------------- 1 | body { 2 | /*background: #ffffff;*/ 3 | margin-left: 10px; 4 | margin-right: 2px; 5 | margin-bottom: 6px; 6 | } 7 | h1, p, ul { 8 | font-family: 'MS Reference Sans Serif', verdana, arial, sans-serif; 9 | } 10 | .code, .code_emphasis, .code_keyword, pre, .shortcut { 11 | font-family: 'Lucida Console', monospace; 12 | } 13 | h1, p, pre, ul { 14 | font-size: 10px; 15 | /*color: #3f3f3f;*/ 16 | } 17 | p, ul { 18 | margin-top: 6px; 19 | } 20 | h1, p, ul { 21 | margin-bottom: 0; 22 | } 23 | ul { 24 | margin-left: 0; 25 | padding-left: 14px; 26 | } 27 | h1, .image, pre { 28 | margin-top: 10px; 29 | } 30 | .image, pre { 31 | margin-bottom: 2px; 32 | } 33 | pre { 34 | margin-right: 6px; 35 | border-style: solid; 36 | border-width: 1px; 37 | border-color: #d0d0d0; 38 | background-color: #fbfbfb; 39 | padding-left: 10px; 40 | padding-top: 6px; 41 | padding-bottom: 6px; 42 | } 43 | .control, h1 { 44 | font-weight: bold; 45 | } 46 | .control { 47 | color: #808080; 48 | } 49 | .caret, .code_emphasis, .code_keyword, .emphasis, .shortcut { 50 | color: #990000; 51 | } 52 | pre .keyword{ 53 | color: #000080; 54 | } 55 | h1 .product { 56 | color: #264db5; 57 | } 58 | h1 .version { 59 | color: #f58220; 60 | } -------------------------------------------------------------------------------- /tips/css/tips_darcula.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2000-2013 JetBrains s.r.o. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | body { 17 | margin-left: 10px; 18 | margin-right: 2px; 19 | margin-bottom: 6px; 20 | } 21 | h1, p, ul { 22 | font-family: 'MS Reference Sans Serif', verdana, arial, sans-serif; 23 | } 24 | .code, .code_emphasis, .code_keyword, pre, .shortcut { 25 | font-family: 'Lucida Console', monospace; 26 | } 27 | h1, p, pre, ul { 28 | font-size: 10px; 29 | /*color: #3f3f3f;*/ 30 | } 31 | p, ul { 32 | margin-top: 6px; 33 | } 34 | h1, p, ul { 35 | margin-bottom: 0; 36 | } 37 | ul { 38 | margin-left: 0; 39 | padding-left: 14px; 40 | } 41 | h1, .image, pre { 42 | margin-top: 10px; 43 | } 44 | .image, pre { 45 | margin-bottom: 2px; 46 | } 47 | pre { 48 | margin-right: 6px; 49 | border-style: solid; 50 | border-width: 1px; 51 | border-color: #d0d0d0; 52 | background-color: #fbfbfb; 53 | padding-left: 10px; 54 | padding-top: 6px; 55 | padding-bottom: 6px; 56 | } 57 | .control, h1 { 58 | font-weight: bold; 59 | } 60 | .control { 61 | color: #d19a67; 62 | } 63 | .caret, .code_emphasis, .code_keyword, .emphasis, .shortcut { 64 | color: #cb7d4a; 65 | font-weight: bold; 66 | } 67 | pre .keyword{ 68 | color: #cb7832; 69 | } 70 | h1 .product { 71 | color: #5275d0; 72 | } 73 | h1 .version { 74 | color: #f58220; 75 | } -------------------------------------------------------------------------------- /tips/images/CodeCompletionInSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/CodeCompletionInSearch.png -------------------------------------------------------------------------------- /tips/images/CodeCompletionInSearch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/CodeCompletionInSearch@2x.png -------------------------------------------------------------------------------- /tips/images/CodeCompletionInSearch@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/CodeCompletionInSearch@2x_dark.png -------------------------------------------------------------------------------- /tips/images/CodeCompletionInSearch_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/CodeCompletionInSearch_dark.png -------------------------------------------------------------------------------- /tips/images/RunConfigFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/RunConfigFolder.png -------------------------------------------------------------------------------- /tips/images/RunConfigFolder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/RunConfigFolder@2x.png -------------------------------------------------------------------------------- /tips/images/RunConfigFolder@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/RunConfigFolder@2x_dark.png -------------------------------------------------------------------------------- /tips/images/RunConfigFolder_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/RunConfigFolder_dark.png -------------------------------------------------------------------------------- /tips/images/SpeedSearchInLiveTemplates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/SpeedSearchInLiveTemplates.png -------------------------------------------------------------------------------- /tips/images/SpeedSearchInLiveTemplates@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/SpeedSearchInLiveTemplates@2x.png -------------------------------------------------------------------------------- /tips/images/SpeedSearchInLiveTemplates@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/SpeedSearchInLiveTemplates@2x_dark.png -------------------------------------------------------------------------------- /tips/images/SpeedSearchInLiveTemplates_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/SpeedSearchInLiveTemplates_dark.png -------------------------------------------------------------------------------- /tips/images/add_remote_interpreter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/add_remote_interpreter.png -------------------------------------------------------------------------------- /tips/images/add_remote_interpreter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/add_remote_interpreter@2x.png -------------------------------------------------------------------------------- /tips/images/add_remote_interpreter@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/add_remote_interpreter@2x_dark.png -------------------------------------------------------------------------------- /tips/images/add_remote_interpreter_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/add_remote_interpreter_dark.png -------------------------------------------------------------------------------- /tips/images/annotationShowDiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/annotationShowDiff.png -------------------------------------------------------------------------------- /tips/images/annotationShowDiff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/annotationShowDiff@2x.png -------------------------------------------------------------------------------- /tips/images/annotationShowDiff@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/annotationShowDiff@2x_dark.png -------------------------------------------------------------------------------- /tips/images/annotationShowDiff_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/annotationShowDiff_dark.png -------------------------------------------------------------------------------- /tips/images/breakpoint_speedmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/breakpoint_speedmenu.png -------------------------------------------------------------------------------- /tips/images/breakpoint_speedmenu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/breakpoint_speedmenu@2x.png -------------------------------------------------------------------------------- /tips/images/breakpoint_speedmenu@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/breakpoint_speedmenu@2x_dark.png -------------------------------------------------------------------------------- /tips/images/breakpoint_speedmenu@_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/breakpoint_speedmenu@_dark.png -------------------------------------------------------------------------------- /tips/images/browse_remote_hosts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/browse_remote_hosts.png -------------------------------------------------------------------------------- /tips/images/builtInServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/builtInServer.png -------------------------------------------------------------------------------- /tips/images/builtInServer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/builtInServer@2x.png -------------------------------------------------------------------------------- /tips/images/builtInServer@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/builtInServer@2x_dark.png -------------------------------------------------------------------------------- /tips/images/builtInServer@_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/builtInServer@_dark.png -------------------------------------------------------------------------------- /tips/images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/bullet.png -------------------------------------------------------------------------------- /tips/images/camel_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/camel_completion.png -------------------------------------------------------------------------------- /tips/images/camel_completion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/camel_completion@2x.png -------------------------------------------------------------------------------- /tips/images/camel_completion@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/camel_completion@2x_dark.png -------------------------------------------------------------------------------- /tips/images/camel_completion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/camel_completion_dark.png -------------------------------------------------------------------------------- /tips/images/camel_goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/camel_goto.png -------------------------------------------------------------------------------- /tips/images/camel_goto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/camel_goto@2x.png -------------------------------------------------------------------------------- /tips/images/camel_goto@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/camel_goto@2x_dark.png -------------------------------------------------------------------------------- /tips/images/camel_goto_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/camel_goto_dark.png -------------------------------------------------------------------------------- /tips/images/changeLookupSorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/changeLookupSorting.png -------------------------------------------------------------------------------- /tips/images/changeLookupSorting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/changeLookupSorting@2x.png -------------------------------------------------------------------------------- /tips/images/changeLookupSorting@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/changeLookupSorting@2x_dark.png -------------------------------------------------------------------------------- /tips/images/changeLookupSorting_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/changeLookupSorting_dark.png -------------------------------------------------------------------------------- /tips/images/checkRegExp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/checkRegExp.png -------------------------------------------------------------------------------- /tips/images/checkRegExp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/checkRegExp@2x.png -------------------------------------------------------------------------------- /tips/images/checkRegExp@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/checkRegExp@2x_dark.png -------------------------------------------------------------------------------- /tips/images/checkRegExp_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/checkRegExp_dark.png -------------------------------------------------------------------------------- /tips/images/class_name_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/class_name_completion.png -------------------------------------------------------------------------------- /tips/images/class_name_completion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/class_name_completion@2x.png -------------------------------------------------------------------------------- /tips/images/class_name_completion@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/class_name_completion@2x_dark.png -------------------------------------------------------------------------------- /tips/images/class_name_completion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/class_name_completion_dark.png -------------------------------------------------------------------------------- /tips/images/close1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/close1.png -------------------------------------------------------------------------------- /tips/images/close_others.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/close_others.png -------------------------------------------------------------------------------- /tips/images/close_others@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/close_others@2x.png -------------------------------------------------------------------------------- /tips/images/close_others@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/close_others@2x_dark.png -------------------------------------------------------------------------------- /tips/images/close_others_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/close_others_dark.png -------------------------------------------------------------------------------- /tips/images/code_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/code_completion.png -------------------------------------------------------------------------------- /tips/images/code_completion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/code_completion@2x.png -------------------------------------------------------------------------------- /tips/images/code_completion@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/code_completion@2x_dark.png -------------------------------------------------------------------------------- /tips/images/code_completion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/code_completion_dark.png -------------------------------------------------------------------------------- /tips/images/code_completion_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/code_completion_middle.png -------------------------------------------------------------------------------- /tips/images/code_completion_middle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/code_completion_middle@2x.png -------------------------------------------------------------------------------- /tips/images/code_completion_middle@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/code_completion_middle@2x_dark.png -------------------------------------------------------------------------------- /tips/images/code_completion_middle_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/code_completion_middle_dark.png -------------------------------------------------------------------------------- /tips/images/code_completion_no_shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/code_completion_no_shift.png -------------------------------------------------------------------------------- /tips/images/code_completion_no_shift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/code_completion_no_shift@2x.png -------------------------------------------------------------------------------- /tips/images/code_completion_no_shift@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/code_completion_no_shift@2x_dark.png -------------------------------------------------------------------------------- /tips/images/code_completion_no_shift_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/code_completion_no_shift_dark.png -------------------------------------------------------------------------------- /tips/images/coloredFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/coloredFiles.png -------------------------------------------------------------------------------- /tips/images/coloredFiles@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/coloredFiles@2x.png -------------------------------------------------------------------------------- /tips/images/coloredFiles@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/coloredFiles@2x_dark.png -------------------------------------------------------------------------------- /tips/images/coloredFiles_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/coloredFiles_dark.png -------------------------------------------------------------------------------- /tips/images/columnSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/columnSelection.png -------------------------------------------------------------------------------- /tips/images/columnSelection@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/columnSelection@2x.png -------------------------------------------------------------------------------- /tips/images/columnSelection@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/columnSelection@2x_dark.png -------------------------------------------------------------------------------- /tips/images/columnSelection_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/columnSelection_dark.png -------------------------------------------------------------------------------- /tips/images/completion_in_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/completion_in_html.png -------------------------------------------------------------------------------- /tips/images/completion_in_html2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/completion_in_html2.png -------------------------------------------------------------------------------- /tips/images/completion_in_html2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/completion_in_html2@2x.png -------------------------------------------------------------------------------- /tips/images/completion_in_html2@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/completion_in_html2@2x_dark.png -------------------------------------------------------------------------------- /tips/images/completion_in_html2_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/completion_in_html2_dark.png -------------------------------------------------------------------------------- /tips/images/completion_in_html@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/completion_in_html@2x.png -------------------------------------------------------------------------------- /tips/images/completion_in_html@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/completion_in_html@2x_dark.png -------------------------------------------------------------------------------- /tips/images/completion_in_html_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/completion_in_html_dark.png -------------------------------------------------------------------------------- /tips/images/cssColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/cssColor.png -------------------------------------------------------------------------------- /tips/images/cssColor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/cssColor@2x.png -------------------------------------------------------------------------------- /tips/images/cssColor@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/cssColor@2x_dark.png -------------------------------------------------------------------------------- /tips/images/cssColor_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/cssColor_dark.png -------------------------------------------------------------------------------- /tips/images/ctrl_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/ctrl_click.png -------------------------------------------------------------------------------- /tips/images/ctrl_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/ctrl_click@2x.png -------------------------------------------------------------------------------- /tips/images/ctrl_click@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/ctrl_click@2x_dark.png -------------------------------------------------------------------------------- /tips/images/ctrl_click_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/ctrl_click_dark.png -------------------------------------------------------------------------------- /tips/images/ctrl_shift_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/ctrl_shift_i.png -------------------------------------------------------------------------------- /tips/images/ctrl_shift_i@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/ctrl_shift_i@2x.png -------------------------------------------------------------------------------- /tips/images/ctrl_shift_i@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/ctrl_shift_i@2x_dark.png -------------------------------------------------------------------------------- /tips/images/ctrl_shift_i_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/ctrl_shift_i_dark.png -------------------------------------------------------------------------------- /tips/images/ctrl_shift_in_lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/ctrl_shift_in_lookup.png -------------------------------------------------------------------------------- /tips/images/ctrl_shift_in_lookup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/ctrl_shift_in_lookup@2x.png -------------------------------------------------------------------------------- /tips/images/ctrl_shift_in_lookup@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/ctrl_shift_in_lookup@2x_dark.png -------------------------------------------------------------------------------- /tips/images/ctrl_shift_in_lookup_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/ctrl_shift_in_lookup_dark.png -------------------------------------------------------------------------------- /tips/images/default_template_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/default_template_language.png -------------------------------------------------------------------------------- /tips/images/default_template_language@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/default_template_language@2x.png -------------------------------------------------------------------------------- /tips/images/default_template_language@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/default_template_language@2x_dark.png -------------------------------------------------------------------------------- /tips/images/default_template_language_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/default_template_language_dark.png -------------------------------------------------------------------------------- /tips/images/deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/deployment.png -------------------------------------------------------------------------------- /tips/images/deployment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/deployment@2x.png -------------------------------------------------------------------------------- /tips/images/deployment@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/deployment@2x_dark.png -------------------------------------------------------------------------------- /tips/images/deployment_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/deployment_dark.png -------------------------------------------------------------------------------- /tips/images/dragToOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/dragToOpen.png -------------------------------------------------------------------------------- /tips/images/dragToOpen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/dragToOpen@2x.png -------------------------------------------------------------------------------- /tips/images/dragToOpen@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/dragToOpen@2x_dark.png -------------------------------------------------------------------------------- /tips/images/dragToOpen_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/dragToOpen_dark.png -------------------------------------------------------------------------------- /tips/images/editregexp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/editregexp.png -------------------------------------------------------------------------------- /tips/images/editregexp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/editregexp@2x.png -------------------------------------------------------------------------------- /tips/images/editregexp@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/editregexp@2x_dark.png -------------------------------------------------------------------------------- /tips/images/editregexp_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/editregexp_dark.png -------------------------------------------------------------------------------- /tips/images/emmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/emmet.png -------------------------------------------------------------------------------- /tips/images/emmet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/emmet@2x.png -------------------------------------------------------------------------------- /tips/images/emmet@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/emmet@2x_dark.png -------------------------------------------------------------------------------- /tips/images/emmet_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/emmet_dark.png -------------------------------------------------------------------------------- /tips/images/enterDirectory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/enterDirectory.png -------------------------------------------------------------------------------- /tips/images/enterDirectory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/enterDirectory@2x.png -------------------------------------------------------------------------------- /tips/images/enterDirectory@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/enterDirectory@2x_dark.png -------------------------------------------------------------------------------- /tips/images/enterDirectory_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/enterDirectory_dark.png -------------------------------------------------------------------------------- /tips/images/extract_variable_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/extract_variable_1.png -------------------------------------------------------------------------------- /tips/images/extract_variable_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/extract_variable_1@2x.png -------------------------------------------------------------------------------- /tips/images/extract_variable_1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/extract_variable_1@2x_dark.png -------------------------------------------------------------------------------- /tips/images/extract_variable_1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/extract_variable_1_dark.png -------------------------------------------------------------------------------- /tips/images/extract_variable_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/extract_variable_2.png -------------------------------------------------------------------------------- /tips/images/extract_variable_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/extract_variable_2@2x.png -------------------------------------------------------------------------------- /tips/images/extract_variable_2@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/extract_variable_2@2x_dark.png -------------------------------------------------------------------------------- /tips/images/extract_variable_2_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/extract_variable_2_dark.png -------------------------------------------------------------------------------- /tips/images/gotoFileLineNumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/gotoFileLineNumber.png -------------------------------------------------------------------------------- /tips/images/gotoFileLineNumber@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/gotoFileLineNumber@2x.png -------------------------------------------------------------------------------- /tips/images/gotoFileLineNumber@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/gotoFileLineNumber@2x_dark.png -------------------------------------------------------------------------------- /tips/images/gotoFileLineNumber_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/gotoFileLineNumber_dark.png -------------------------------------------------------------------------------- /tips/images/goto_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_class.png -------------------------------------------------------------------------------- /tips/images/goto_class@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_class@2x.png -------------------------------------------------------------------------------- /tips/images/goto_class@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_class@2x_dark.png -------------------------------------------------------------------------------- /tips/images/goto_class_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_class_dark.png -------------------------------------------------------------------------------- /tips/images/goto_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_symbol.png -------------------------------------------------------------------------------- /tips/images/goto_symbol@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_symbol@2x.png -------------------------------------------------------------------------------- /tips/images/goto_symbol@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_symbol@2x_dark.png -------------------------------------------------------------------------------- /tips/images/goto_symbol_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_symbol_dark.png -------------------------------------------------------------------------------- /tips/images/goto_template_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_template_icon.png -------------------------------------------------------------------------------- /tips/images/goto_template_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_template_icon@2x.png -------------------------------------------------------------------------------- /tips/images/goto_template_icon@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_template_icon@2x_dark.png -------------------------------------------------------------------------------- /tips/images/goto_template_icon_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_template_icon_dark.png -------------------------------------------------------------------------------- /tips/images/goto_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_view.png -------------------------------------------------------------------------------- /tips/images/goto_view@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_view@2x.png -------------------------------------------------------------------------------- /tips/images/goto_view@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_view@2x_dark.png -------------------------------------------------------------------------------- /tips/images/goto_view_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_view_dark.png -------------------------------------------------------------------------------- /tips/images/goto_view_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_view_icon.png -------------------------------------------------------------------------------- /tips/images/goto_view_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_view_icon@2x.png -------------------------------------------------------------------------------- /tips/images/goto_view_icon@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_view_icon@2x_dark.png -------------------------------------------------------------------------------- /tips/images/goto_view_icon_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/goto_view_icon_dark.png -------------------------------------------------------------------------------- /tips/images/hierarchy_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/hierarchy_browser.png -------------------------------------------------------------------------------- /tips/images/hierarchy_browser@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/hierarchy_browser@2x.png -------------------------------------------------------------------------------- /tips/images/hierarchy_browser@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/hierarchy_browser@2x_dark.png -------------------------------------------------------------------------------- /tips/images/hierarchy_browser_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/hierarchy_browser_dark.png -------------------------------------------------------------------------------- /tips/images/image_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/image_completion.png -------------------------------------------------------------------------------- /tips/images/image_completion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/image_completion@2x.png -------------------------------------------------------------------------------- /tips/images/image_completion@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/image_completion@2x_dark.png -------------------------------------------------------------------------------- /tips/images/image_completion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/image_completion_dark.png -------------------------------------------------------------------------------- /tips/images/image_lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/image_lookup.png -------------------------------------------------------------------------------- /tips/images/image_lookup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/image_lookup@2x.png -------------------------------------------------------------------------------- /tips/images/image_lookup@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/image_lookup@2x_dark.png -------------------------------------------------------------------------------- /tips/images/image_lookup_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/image_lookup_dark.png -------------------------------------------------------------------------------- /tips/images/introduce_variable_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/introduce_variable_1.png -------------------------------------------------------------------------------- /tips/images/introduce_variable_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/introduce_variable_1@2x.png -------------------------------------------------------------------------------- /tips/images/introduce_variable_1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/introduce_variable_1@2x_dark.png -------------------------------------------------------------------------------- /tips/images/introduce_variable_1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/introduce_variable_1_dark.png -------------------------------------------------------------------------------- /tips/images/introduce_variable_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/introduce_variable_2.png -------------------------------------------------------------------------------- /tips/images/introduce_variable_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/introduce_variable_2@2x.png -------------------------------------------------------------------------------- /tips/images/introduce_variable_2@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/introduce_variable_2@2x_dark.png -------------------------------------------------------------------------------- /tips/images/introduce_variable_2_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/introduce_variable_2_dark.png -------------------------------------------------------------------------------- /tips/images/issueNavigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/issueNavigation.png -------------------------------------------------------------------------------- /tips/images/issueNavigation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/issueNavigation1.png -------------------------------------------------------------------------------- /tips/images/issueNavigation1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/issueNavigation1@2x.png -------------------------------------------------------------------------------- /tips/images/issueNavigation1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/issueNavigation1@2x_dark.png -------------------------------------------------------------------------------- /tips/images/issueNavigation1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/issueNavigation1_dark.png -------------------------------------------------------------------------------- /tips/images/issueNavigation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/issueNavigation@2x.png -------------------------------------------------------------------------------- /tips/images/issueNavigation@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/issueNavigation@2x_dark.png -------------------------------------------------------------------------------- /tips/images/issueNavigation_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/issueNavigation_dark.png -------------------------------------------------------------------------------- /tips/images/jumplist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/jumplist.png -------------------------------------------------------------------------------- /tips/images/jumplist@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/jumplist@2x.png -------------------------------------------------------------------------------- /tips/images/jumplist@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/jumplist@2x_dark.png -------------------------------------------------------------------------------- /tips/images/jumplist_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/jumplist_dark.png -------------------------------------------------------------------------------- /tips/images/launch_console_in_debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/launch_console_in_debugger.png -------------------------------------------------------------------------------- /tips/images/launch_console_in_debugger@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/launch_console_in_debugger@2x.png -------------------------------------------------------------------------------- /tips/images/launch_console_in_debugger@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/launch_console_in_debugger@2x_dark.png -------------------------------------------------------------------------------- /tips/images/launch_console_in_debugger_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/launch_console_in_debugger_dark.png -------------------------------------------------------------------------------- /tips/images/line_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/line_separator.png -------------------------------------------------------------------------------- /tips/images/line_separator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/line_separator@2x.png -------------------------------------------------------------------------------- /tips/images/line_separator@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/line_separator@2x_dark.png -------------------------------------------------------------------------------- /tips/images/line_separator_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/line_separator_dark.png -------------------------------------------------------------------------------- /tips/images/line_separator_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/line_separator_folder.png -------------------------------------------------------------------------------- /tips/images/line_separator_folder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/line_separator_folder@2x.png -------------------------------------------------------------------------------- /tips/images/line_separator_folder@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/line_separator_folder@2x_dark.png -------------------------------------------------------------------------------- /tips/images/line_separator_folder_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/line_separator_folder_dark.png -------------------------------------------------------------------------------- /tips/images/live_templates_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/live_templates_1.png -------------------------------------------------------------------------------- /tips/images/live_templates_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/live_templates_1@2x.png -------------------------------------------------------------------------------- /tips/images/live_templates_1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/live_templates_1@2x_dark.png -------------------------------------------------------------------------------- /tips/images/live_templates_1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/live_templates_1_dark.png -------------------------------------------------------------------------------- /tips/images/live_templates_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/live_templates_2.png -------------------------------------------------------------------------------- /tips/images/live_templates_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/live_templates_2@2x.png -------------------------------------------------------------------------------- /tips/images/live_templates_2@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/live_templates_2@2x_dark.png -------------------------------------------------------------------------------- /tips/images/live_templates_2_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/live_templates_2_dark.png -------------------------------------------------------------------------------- /tips/images/lower_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/lower_left.png -------------------------------------------------------------------------------- /tips/images/lower_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/lower_left@2x.png -------------------------------------------------------------------------------- /tips/images/lower_left@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/lower_left@2x_dark.png -------------------------------------------------------------------------------- /tips/images/lower_left_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/lower_left_dark.png -------------------------------------------------------------------------------- /tips/images/managepy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/managepy.png -------------------------------------------------------------------------------- /tips/images/managepy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/managepy@2x.png -------------------------------------------------------------------------------- /tips/images/managepy@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/managepy@2x_dark.png -------------------------------------------------------------------------------- /tips/images/managepy_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/managepy_dark.png -------------------------------------------------------------------------------- /tips/images/method_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/method_separator.png -------------------------------------------------------------------------------- /tips/images/method_separator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/method_separator@2x.png -------------------------------------------------------------------------------- /tips/images/method_separator@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/method_separator@2x_dark.png -------------------------------------------------------------------------------- /tips/images/method_separator_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/method_separator_dark.png -------------------------------------------------------------------------------- /tips/images/move_to_changelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_to_changelist.png -------------------------------------------------------------------------------- /tips/images/move_to_changelist@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_to_changelist@2x.png -------------------------------------------------------------------------------- /tips/images/move_to_changelist@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_to_changelist@2x_dark.png -------------------------------------------------------------------------------- /tips/images/move_to_changelist_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_to_changelist_dark.png -------------------------------------------------------------------------------- /tips/images/move_up_down_witharrows_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_up_down_witharrows_down.png -------------------------------------------------------------------------------- /tips/images/move_up_down_witharrows_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_up_down_witharrows_down@2x.png -------------------------------------------------------------------------------- /tips/images/move_up_down_witharrows_down@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_up_down_witharrows_down@2x_dark.png -------------------------------------------------------------------------------- /tips/images/move_up_down_witharrows_down_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_up_down_witharrows_down_dark.png -------------------------------------------------------------------------------- /tips/images/move_up_down_witharrows_initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_up_down_witharrows_initial.png -------------------------------------------------------------------------------- /tips/images/move_up_down_witharrows_initial@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_up_down_witharrows_initial@2x.png -------------------------------------------------------------------------------- /tips/images/move_up_down_witharrows_initial@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_up_down_witharrows_initial@2x_dark.png -------------------------------------------------------------------------------- /tips/images/move_up_down_witharrows_initial_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_up_down_witharrows_initial_dark.png -------------------------------------------------------------------------------- /tips/images/move_up_down_witharrows_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_up_down_witharrows_up.png -------------------------------------------------------------------------------- /tips/images/move_up_down_witharrows_up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_up_down_witharrows_up@2x.png -------------------------------------------------------------------------------- /tips/images/move_up_down_witharrows_up@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_up_down_witharrows_up@2x_dark.png -------------------------------------------------------------------------------- /tips/images/move_up_down_witharrows_up_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/move_up_down_witharrows_up_dark.png -------------------------------------------------------------------------------- /tips/images/navigateToFilePath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/navigateToFilePath.png -------------------------------------------------------------------------------- /tips/images/navigateToFilePath@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/navigateToFilePath@2x.png -------------------------------------------------------------------------------- /tips/images/navigateToFilePath@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/navigateToFilePath@2x_dark.png -------------------------------------------------------------------------------- /tips/images/navigateToFilePath_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/navigateToFilePath_dark.png -------------------------------------------------------------------------------- /tips/images/navigationbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/navigationbar.png -------------------------------------------------------------------------------- /tips/images/navigationbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/navigationbar@2x.png -------------------------------------------------------------------------------- /tips/images/navigationbar@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/navigationbar@2x_dark.png -------------------------------------------------------------------------------- /tips/images/navigationbar_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/navigationbar_dark.png -------------------------------------------------------------------------------- /tips/images/override_methods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/override_methods.png -------------------------------------------------------------------------------- /tips/images/override_methods@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/override_methods@2x.png -------------------------------------------------------------------------------- /tips/images/override_methods@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/override_methods@2x_dark.png -------------------------------------------------------------------------------- /tips/images/override_methods_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/override_methods_dark.png -------------------------------------------------------------------------------- /tips/images/param_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/param_info.png -------------------------------------------------------------------------------- /tips/images/param_info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/param_info@2x.png -------------------------------------------------------------------------------- /tips/images/param_info@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/param_info@2x_dark.png -------------------------------------------------------------------------------- /tips/images/param_info_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/param_info_dark.png -------------------------------------------------------------------------------- /tips/images/pyColoredFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/pyColoredFiles.png -------------------------------------------------------------------------------- /tips/images/pyColoredFiles@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/pyColoredFiles@2x.png -------------------------------------------------------------------------------- /tips/images/pyColoredFiles@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/pyColoredFiles@2x_dark.png -------------------------------------------------------------------------------- /tips/images/pyColoredFiles_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/pyColoredFiles_dark.png -------------------------------------------------------------------------------- /tips/images/pyconsole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/pyconsole.png -------------------------------------------------------------------------------- /tips/images/pyconsole@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/pyconsole@2x.png -------------------------------------------------------------------------------- /tips/images/pyconsole@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/pyconsole@2x_dark.png -------------------------------------------------------------------------------- /tips/images/pyconsole_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/pyconsole_dark.png -------------------------------------------------------------------------------- /tips/images/quick_fix_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_fix_options.png -------------------------------------------------------------------------------- /tips/images/quick_fix_options@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_fix_options@2x.png -------------------------------------------------------------------------------- /tips/images/quick_fix_options@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_fix_options@2x_dark.png -------------------------------------------------------------------------------- /tips/images/quick_fix_options_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_fix_options_dark.png -------------------------------------------------------------------------------- /tips/images/quick_javadoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_javadoc.png -------------------------------------------------------------------------------- /tips/images/quick_javadoc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_javadoc@2x.png -------------------------------------------------------------------------------- /tips/images/quick_javadoc@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_javadoc@2x_dark.png -------------------------------------------------------------------------------- /tips/images/quick_javadoc_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_javadoc_dark.png -------------------------------------------------------------------------------- /tips/images/quick_javadoc_in_lookups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_javadoc_in_lookups.png -------------------------------------------------------------------------------- /tips/images/quick_javadoc_in_lookups@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_javadoc_in_lookups@2x.png -------------------------------------------------------------------------------- /tips/images/quick_javadoc_in_lookups@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_javadoc_in_lookups@2x_dark.png -------------------------------------------------------------------------------- /tips/images/quick_javadoc_in_lookups_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_javadoc_in_lookups_dark.png -------------------------------------------------------------------------------- /tips/images/quick_switch_scheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_switch_scheme.png -------------------------------------------------------------------------------- /tips/images/quick_switch_scheme@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_switch_scheme@2x.png -------------------------------------------------------------------------------- /tips/images/quick_switch_scheme@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_switch_scheme@2x_dark.png -------------------------------------------------------------------------------- /tips/images/quick_switch_scheme_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/quick_switch_scheme_dark.png -------------------------------------------------------------------------------- /tips/images/recentSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recentSearch.png -------------------------------------------------------------------------------- /tips/images/recentSearch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recentSearch@2x.png -------------------------------------------------------------------------------- /tips/images/recentSearch@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recentSearch@2x_dark.png -------------------------------------------------------------------------------- /tips/images/recentSearch_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recentSearch_dark.png -------------------------------------------------------------------------------- /tips/images/recent_changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recent_changes.png -------------------------------------------------------------------------------- /tips/images/recent_changes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recent_changes@2x.png -------------------------------------------------------------------------------- /tips/images/recent_changes@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recent_changes@2x_dark.png -------------------------------------------------------------------------------- /tips/images/recent_changes_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recent_changes_dark.png -------------------------------------------------------------------------------- /tips/images/recent_files_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recent_files_1.png -------------------------------------------------------------------------------- /tips/images/recent_files_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recent_files_1@2x.png -------------------------------------------------------------------------------- /tips/images/recent_files_1@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recent_files_1@2x_dark.png -------------------------------------------------------------------------------- /tips/images/recent_files_1_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recent_files_1_dark.png -------------------------------------------------------------------------------- /tips/images/recent_files_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recent_files_2.png -------------------------------------------------------------------------------- /tips/images/recent_files_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recent_files_2@2x.png -------------------------------------------------------------------------------- /tips/images/recent_files_2@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recent_files_2@2x_dark.png -------------------------------------------------------------------------------- /tips/images/recent_files_2_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/recent_files_2_dark.png -------------------------------------------------------------------------------- /tips/images/refactor_this.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/refactor_this.png -------------------------------------------------------------------------------- /tips/images/refactor_this@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/refactor_this@2x.png -------------------------------------------------------------------------------- /tips/images/refactor_this@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/refactor_this@2x_dark.png -------------------------------------------------------------------------------- /tips/images/refactor_this_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/refactor_this_dark.png -------------------------------------------------------------------------------- /tips/images/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/rename.png -------------------------------------------------------------------------------- /tips/images/rename@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/rename@2x.png -------------------------------------------------------------------------------- /tips/images/rename@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/rename@2x_dark.png -------------------------------------------------------------------------------- /tips/images/rename_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/rename_dark.png -------------------------------------------------------------------------------- /tips/images/reopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/reopen.png -------------------------------------------------------------------------------- /tips/images/reopen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/reopen@2x.png -------------------------------------------------------------------------------- /tips/images/reopen@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/reopen@2x_dark.png -------------------------------------------------------------------------------- /tips/images/reopen_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/reopen_dark.png -------------------------------------------------------------------------------- /tips/images/searchEverywhere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/searchEverywhere.png -------------------------------------------------------------------------------- /tips/images/searchEverywhere@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/searchEverywhere@2x.png -------------------------------------------------------------------------------- /tips/images/searchEverywhere@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/searchEverywhere@2x_dark.png -------------------------------------------------------------------------------- /tips/images/searchEverywhere_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/searchEverywhere_dark.png -------------------------------------------------------------------------------- /tips/images/searchEverywhere_lense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/searchEverywhere_lense.png -------------------------------------------------------------------------------- /tips/images/searchEverywhere_lense@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/searchEverywhere_lense@2x.png -------------------------------------------------------------------------------- /tips/images/searchEverywhere_lense@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/searchEverywhere_lense@2x_dark.png -------------------------------------------------------------------------------- /tips/images/searchEverywhere_lense_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/searchEverywhere_lense_dark.png -------------------------------------------------------------------------------- /tips/images/search_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/search_settings.png -------------------------------------------------------------------------------- /tips/images/search_settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/search_settings@2x.png -------------------------------------------------------------------------------- /tips/images/search_settings@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/search_settings@2x_dark.png -------------------------------------------------------------------------------- /tips/images/search_settings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/search_settings_dark.png -------------------------------------------------------------------------------- /tips/images/select_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/select_in.png -------------------------------------------------------------------------------- /tips/images/select_in@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/select_in@2x.png -------------------------------------------------------------------------------- /tips/images/select_in@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/select_in@2x_dark.png -------------------------------------------------------------------------------- /tips/images/select_in_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/select_in_dark.png -------------------------------------------------------------------------------- /tips/images/select_tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/select_tasks.png -------------------------------------------------------------------------------- /tips/images/select_tasks@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/select_tasks@2x.png -------------------------------------------------------------------------------- /tips/images/select_tasks@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/select_tasks@2x_dark.png -------------------------------------------------------------------------------- /tips/images/select_tasks_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/select_tasks_dark.png -------------------------------------------------------------------------------- /tips/images/showToolWindows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/showToolWindows.png -------------------------------------------------------------------------------- /tips/images/showToolWindows@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/showToolWindows@2x.png -------------------------------------------------------------------------------- /tips/images/showToolWindows@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/showToolWindows@2x_dark.png -------------------------------------------------------------------------------- /tips/images/showToolWindows_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/showToolWindows_dark.png -------------------------------------------------------------------------------- /tips/images/showUsages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/showUsages.png -------------------------------------------------------------------------------- /tips/images/showUsages@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/showUsages@2x.png -------------------------------------------------------------------------------- /tips/images/showUsages@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/showUsages@2x_dark.png -------------------------------------------------------------------------------- /tips/images/showUsages_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/showUsages_dark.png -------------------------------------------------------------------------------- /tips/images/show_applied_styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/show_applied_styles.png -------------------------------------------------------------------------------- /tips/images/show_applied_styles@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/show_applied_styles@2x.png -------------------------------------------------------------------------------- /tips/images/show_applied_styles@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/show_applied_styles@2x_dark.png -------------------------------------------------------------------------------- /tips/images/show_applied_styles_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/show_applied_styles_dark.png -------------------------------------------------------------------------------- /tips/images/show_hide_tool_window_bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/show_hide_tool_window_bars.png -------------------------------------------------------------------------------- /tips/images/show_hide_tool_window_bars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/show_hide_tool_window_bars@2x.png -------------------------------------------------------------------------------- /tips/images/show_hide_tool_window_bars@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/show_hide_tool_window_bars@2x_dark.png -------------------------------------------------------------------------------- /tips/images/show_hide_tool_window_bars_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/show_hide_tool_window_bars_dark.png -------------------------------------------------------------------------------- /tips/images/sidebyside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/sidebyside.png -------------------------------------------------------------------------------- /tips/images/sidebyside@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/sidebyside@2x.png -------------------------------------------------------------------------------- /tips/images/sidebyside@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/sidebyside@2x_dark.png -------------------------------------------------------------------------------- /tips/images/sidebyside_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/sidebyside_dark.png -------------------------------------------------------------------------------- /tips/images/speed_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/speed_search.png -------------------------------------------------------------------------------- /tips/images/speed_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/speed_search@2x.png -------------------------------------------------------------------------------- /tips/images/speed_search@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/speed_search@2x_dark.png -------------------------------------------------------------------------------- /tips/images/speed_search_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/speed_search_dark.png -------------------------------------------------------------------------------- /tips/images/switcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/switcher.png -------------------------------------------------------------------------------- /tips/images/switcher@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/switcher@2x.png -------------------------------------------------------------------------------- /tips/images/switcher@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/switcher@2x_dark.png -------------------------------------------------------------------------------- /tips/images/switcher_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/switcher_dark.png -------------------------------------------------------------------------------- /tips/images/tagNameCompletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/tagNameCompletion.png -------------------------------------------------------------------------------- /tips/images/tagNameCompletion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/tagNameCompletion@2x.png -------------------------------------------------------------------------------- /tips/images/tagNameCompletion@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/tagNameCompletion@2x_dark.png -------------------------------------------------------------------------------- /tips/images/tagNameCompletion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/tagNameCompletion_dark.png -------------------------------------------------------------------------------- /tips/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/terminal.png -------------------------------------------------------------------------------- /tips/images/terminal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/terminal@2x.png -------------------------------------------------------------------------------- /tips/images/terminal@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/terminal@2x_dark.png -------------------------------------------------------------------------------- /tips/images/terminal_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/terminal_dark.png -------------------------------------------------------------------------------- /tips/images/todo_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/todo_preview.png -------------------------------------------------------------------------------- /tips/images/todo_preview@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/todo_preview@2x.png -------------------------------------------------------------------------------- /tips/images/todo_preview@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/todo_preview@2x_dark.png -------------------------------------------------------------------------------- /tips/images/todo_preview_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/todo_preview_dark.png -------------------------------------------------------------------------------- /tips/images/todo_scopes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/todo_scopes.png -------------------------------------------------------------------------------- /tips/images/todo_scopes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/todo_scopes@2x.png -------------------------------------------------------------------------------- /tips/images/todo_scopes@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/todo_scopes@2x_dark.png -------------------------------------------------------------------------------- /tips/images/todo_scopes_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/todo_scopes_dark.png -------------------------------------------------------------------------------- /tips/images/try_except.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/try_except.png -------------------------------------------------------------------------------- /tips/images/try_except@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/try_except@2x.png -------------------------------------------------------------------------------- /tips/images/try_except@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/try_except@2x_dark.png -------------------------------------------------------------------------------- /tips/images/try_except_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/try_except_dark.png -------------------------------------------------------------------------------- /tips/images/vcsQuickList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/vcsQuickList.png -------------------------------------------------------------------------------- /tips/images/vcsQuickList@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/vcsQuickList@2x.png -------------------------------------------------------------------------------- /tips/images/vcsQuickList@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/vcsQuickList@2x_dark.png -------------------------------------------------------------------------------- /tips/images/vcsQuickList_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/vcsQuickList_dark.png -------------------------------------------------------------------------------- /tips/images/wildcard_goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/wildcard_goto.png -------------------------------------------------------------------------------- /tips/images/wildcard_goto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/wildcard_goto@2x.png -------------------------------------------------------------------------------- /tips/images/wildcard_goto@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/wildcard_goto@2x_dark.png -------------------------------------------------------------------------------- /tips/images/wildcard_goto_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/wildcard_goto_dark.png -------------------------------------------------------------------------------- /tips/images/word_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/word_completion.png -------------------------------------------------------------------------------- /tips/images/word_completion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/word_completion@2x.png -------------------------------------------------------------------------------- /tips/images/word_completion@2x_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/word_completion@2x_dark.png -------------------------------------------------------------------------------- /tips/images/word_completion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jythoner/pycharm/571e81bdfedd07cf4c1d2730a59335caa44362d2/tips/images/word_completion_dark.png -------------------------------------------------------------------------------- /tips/moveFileToChangelist.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

9 | You can move any file to a changelist of your choice. To do that, just choose 10 | Move to Changelist on the file context menu in the Changes tool window: 11 |

12 | 13 |

14 | 15 | 16 | 17 | --------------------------------------------------------------------------------