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

AutoCompletion pre-empting enter key #4160

Open
IvenBach opened this issue Jul 6, 2018 · 1 comment
Open

AutoCompletion pre-empting enter key #4160

IvenBach opened this issue Jul 6, 2018 · 1 comment
Labels
enhancement Feature requests, or enhancements to existing features. Ideas. Anything within the project's scope. feature-autocomplete feature-block-completion AC issues specific to the "block completion" handler

Comments

@IvenBach
Copy link
Member

IvenBach commented Jul 6, 2018

With cursor at the position where | is and having With Sheet1.Range("C4:C29")|.Formula = "=1+1" results in

With Sheet1.Range("C4:C29").Formula = "=1+1"
    |
End With

It would be nice if it would end up with

With Sheet1.Range("C4:C29").
    |Formula = "=1+1"
End With

Status-by-design?

@retailcoder
Copy link
Member

retailcoder commented Jul 6, 2018

Status-by-design?

Kinda... But I think it should be possible to take everything RHS of the caret and put it on the next line... Taking this:

With Sheet1.Range("C4:C29")|.Formula = "=1+1"

And giving this:

With Sheet1.Range("C4:C29") 
   .Formula = "=1+1"
   |
End With

@Vogel612 Vogel612 added enhancement Feature requests, or enhancements to existing features. Ideas. Anything within the project's scope. feature-autocomplete labels Jul 6, 2018
@retailcoder retailcoder added the feature-block-completion AC issues specific to the "block completion" handler label Oct 26, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Feature requests, or enhancements to existing features. Ideas. Anything within the project's scope. feature-autocomplete feature-block-completion AC issues specific to the "block completion" handler
Projects
None yet
Development

No branches or pull requests

3 participants