Examples of reinitSettings()


Examples of com.intellij.openapi.editor.ex.EditorEx.reinitSettings()

                consoleEditor.getSettings().setUseSoftWraps(state);
                historyViewer.getSettings().setUseSoftWraps(state);

                consoleEditor.reinitSettings();
                historyViewer.reinitSettings();
            }
        });

        actionList.add(CommonActionsManager.getInstance().createHelpAction("interactive_console"));
View Full Code Here

Examples of com.intellij.openapi.editor.ex.EditorEx.reinitSettings()

        consoleEditor.getSettings().setUseSoftWraps(state);
        historyViewer.getSettings().setUseSoftWraps(state);

        consoleEditor.reinitSettings();
        historyViewer.reinitSettings();
      }
    });

    // help action
    actionList.add(CommonActionsManager.getInstance().createHelpAction("interactive_console"));
View Full Code Here

Examples of com.intellij.openapi.editor.ex.EditorEx.reinitSettings()

            // Apply editorconfig settings for the current editor
            applyCodeStyleSettings(outPairs, newSettings, file);
            codeStyleSettingsManager.setTemporarySettings(newSettings);
            final EditorEx currentEditor = (EditorEx) FileEditorManager.getInstance(project).getSelectedTextEditor();
            if (currentEditor != null){
                currentEditor.reinitSettings();
            }
        }
    }

    private void applyCodeStyleSettings(final List<OutPair> outPairs, final CodeStyleSettings codeStyleSettings,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.