LeonMatthes / Autocompletion

A modern Autocompletion for your Squeak image
8 stars 3 forks source link

Text is not rendered when new line is inserted by autocompletion #11

Closed LinqLover closed 5 years ago

LinqLover commented 5 years ago

Steps to Reproduce

Resize a workspace window and type the following, for example: image Then press tab. I see the following now: image

Expected Behavior

The text should be normally displayed as if you had typed the word manually: image

Kind regards!

LeonMatthes commented 5 years ago

Hi, thank you for using the Autocompletion, and thanks for the bug report. This should now be fixed in the latest commit. You have to install the new changes with this code:

Metacello new
    baseline: 'Autocompletion';
    get; "Notice the get here!"
    load.

Please confirm, that the bug is gone in your image too, so I can close the issue.

LinqLover commented 5 years ago

I am sorry to say that whenever I execute this command, I get an error:

Could not resolve: BaselineOfAutocompletion [BaselineOfAutocompletion] in ...


Von: Leon Matthes notifications@github.com Gesendet: Mittwoch, 30. Januar 2019 14:27 Uhr An: MrModder/Autocompletion Cc: TChristoph; Author Betreff: Re: [MrModder/Autocompletion] Text is not rendered when new line is inserted by autocompletion (#11)

Hi, thank you for using the Autocompletion, and thanks for the bug report. This should now be fixed in the latest commit. You have to install the new changes with this code:

Metacello new baseline: 'Autocompletion'; get; "Notice the get here!" load.

Please confirm, that the bug is gone in your image too, so I can close the issue.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://apc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FMrModder%2FAutocompletion%2Fissues%2F11%23issuecomment-458942908&data=02%7C01%7C%7Ca965e74ebb584bf0ef3508d686b6b7bb%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C636844516650451243&sdata=70ZZVNNR0mJr04NrjAf7jqxMMLarsPvZ9XutPFJs1Wg%3D&reserved=0, or mute the threadhttps://apc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-auth%2FAk_HynwO3x9_3KSMhargvOIDV0yvFW6Mks5vIZ3OgaJpZM4aYk5g&data=02%7C01%7C%7Ca965e74ebb584bf0ef3508d686b6b7bb%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C636844516650461254&sdata=AeTa5AXSuEPlrziiCDdoRj6WpmNKbbUS7GGaOCDtGBo%3D&reserved=0.

LeonMatthes commented 5 years ago

Oh, sorry, I forgot to add the repository url to the Metacello command. You should run either:

Metacello new
    repository: 'github://MrModder/Autocompletion:master/packages';
    baseline: 'Autocompletion';
    get;
    load.

Or:

Metacello image "image will use the repository you used last time for this package"
    baseline: 'Autocompletion';
    get;
    load.
LinqLover commented 5 years ago

Ah, now it works. I am pleased I cannot reproduce the issue any longer, thank you!


Von: Leon Matthes notifications@github.com Gesendet: Freitag, 1. Februar 2019 09:15 Uhr An: MrModder/Autocompletion Cc: TChristoph; Author Betreff: Re: [MrModder/Autocompletion] Text is not rendered when new line is inserted by autocompletion (#11)

Oh, sorry, I forgot to add the repository url to the Metacello command. You should run either:

Metacello new repository: 'github://MrModder/Autocompletion:master/packages'; baseline: 'Autocompletion'; get; load.

Or:

Metacello image "image will use the repository you used last time for this package" baseline: 'Autocompletion'; get; load.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://apc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FMrModder%2FAutocompletion%2Fissues%2F11%23issuecomment-459641799&data=02%7C01%7C%7Cdee0fd5656714a0522bb08d6881d66bb%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C636846057185678634&sdata=tH%2BoKeSzTyxrdk3BSpr64Gjn2u5bWJrEJ0vPFkg%2Bmyg%3D&reserved=0, or mute the threadhttps://apc01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-auth%2FAk_HytRaU2ohDM5GbfaU-YW9u4OmFFhcks5vI_eTgaJpZM4aYk5g&data=02%7C01%7C%7Cdee0fd5656714a0522bb08d6881d66bb%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C636846057185688645&sdata=RTnaSWN52gQhCbesULpKqkDTXlPQ%2F7dqadxkKCNXb8Y%3D&reserved=0.

LeonMatthes commented 5 years ago

Ok, great, thank you for helping me improve the Autocompletion