Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] IEditorOptions bracketPairColorization invalid #4681

Open
2 tasks done
SuperManito opened this issue Sep 14, 2024 · 0 comments
Open
2 tasks done

[Bug] IEditorOptions bracketPairColorization invalid #4681

SuperManito opened this issue Sep 14, 2024 · 0 comments

Comments

@SuperManito
Copy link

Reproducible in vscode.dev or in VS Code Desktop?

  • Not reproducible in vscode.dev or VS Code Desktop

Reproducible in the monaco editor playground?

Monaco Editor Playground Link

https://microsoft.github.io/monaco-editor/playground.html?source=v0.51.0#XQAAAAIbAwAAAAAAAABBqQkHQ5NjdMjwa-jY7SIQ9S7DNlzs5W-mwj0fe1ZCDRFc9ws9XQE0SJE1jc2VKxhaLFIw9vEWSxW3yscw2538rJMB4f4r2wpl7vuc0fhfSZZRRNk_HP1QxxhEGfD3uIA-ZoACWPeRBC-oL-sno-rkUn9_raI7GkBEpDVf1I5cZdXbkGMsrGRe5NYo28_l-MGrojWXNWzYWs9IY-A-t9hWG7CELw733cFm_cM7YKhOwEJelYR67Puk_1zci2on0q-L1BDMlgw4UstspI2L1ASuBiSeApBvQkcxn579FeLDnbQ2ecB2hnmuE7GRTK9OqrGazNT7lrtifFJ_xJhaTcl4ZXRVnqZdueQDDKMZLSu_BsQPGWlNDq4rV_biNdZRjepjKMOvd2Vu9Lf4FK9EYD6Kt41qcOH6wk2kzGgPqOzXsE5G2P4tmRyGc1tUKexMMr5oVUuBIrMqHnqHHiUEchwpw_uNaBLIuKjL6-xJhcXwNlojmacBPnSihsBQNVWYOAlt9BTOPPuId06S8hqpaT32IYH6tJFFFU-kvQ7ssnFz-996X9pwYjjagZHX1OUYCtr9ofeBufUnuCzoVzA-YHfsAypBg2Ww5r6HHm6i9K-EgMiOIfsv5gayCvtY6Pj1k4UhLLqCLQQ_0zh9SQudF7mrye5wwLzEs7bUG--B5QtFo8eT_oR2eg

Monaco Editor Playground Code

var editor = monaco.editor.create(document.getElementById("container"), {
	value: "// First line\nfunction hello() {\n\talert('Hello world!');\n}\n// Last line",
	language: "javascript",

	lineNumbers: "off",
	roundedSelection: false,
	scrollBeyondLastLine: false,
	readOnly: false,
	theme: "vs-dark",
	bracketPairColorization: {
		enabled: false,
		independentColorPoolPerBracketType: false,
	}
});
setTimeout(function () {
	editor.updateOptions({
		lineNumbers: "on",
	});
}, 2000);

Reproduction Steps

No response

Actual (Problematic) Behavior

No response

Expected Behavior

No response

Additional Context

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant