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

Autocomplete brackets and parenthesis #412

Open
processing-bot opened this issue Feb 15, 2022 · 1 comment
Open

Autocomplete brackets and parenthesis #412

processing-bot opened this issue Feb 15, 2022 · 1 comment
Labels
enhancement New feature or request

Comments

@processing-bot
Copy link
Collaborator

Created by: Aviii06

Description

Currently the code editor of the processing doesn't allow even an option to autocomplete curly braces. I think there should atleast be an option for the same.

Expected Behavior

if we write void setup(then the parentesis should close. Further void setup(){ the curly brace should close with proper indentation.

Current Behavior

Currently you have to manually close every single bracket. Which gets extremly annoying for people who regularly code in vs code.
Even though you can have a vs code setup by coding in vs code and have processing run through terminal I feel an option should be given. know similar discussions have been had on P5 and the result was it would be problematic for beginners. But we can still have this as an option.

Steps to Reproduce

  1. Use any parenthesis or curly braces

Your Environment

  • Processing version: in 3.0 and 4.0 beta
  • Operating System and OS version: Mac OS
  • Other information:

Possible Causes / Solutions

We can have a boolean in prefrences.txt and just have a function which first checks for the boolean and auto completes.

@processing-bot
Copy link
Collaborator Author

Created by: Aviii06

Maybe we can re-write this as

text += giveMatchingBracket(text, text.length() - 1);
document.insertString(0,text,null);

where giveMatchingBracket() does similar things to this, but instead returns the mathcing bracket.

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

No branches or pull requests

1 participant