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

The output channel does not wrap automatically #13588

Open
fly-bue opened this issue Apr 11, 2024 · 2 comments
Open

The output channel does not wrap automatically #13588

fly-bue opened this issue Apr 11, 2024 · 2 comments
Labels
help wanted issues meant to be picked up, require help output issues related to the output

Comments

@fly-bue
Copy link

fly-bue commented Apr 11, 2024

Bug Description:

I set 'editor.wordWrap=on', but when I add characters through 'appendLine', characters in the output channel don't wrap automatically.I found that the default value of 'wordWrap' is' off 'and it was not read from the configuration item, See L51.

image

Steps to Reproduce:

commands.registerCommand(SampleCommand, {
      execute: () => {
          const channel = this.outputChannelManager.getChannel('sample:output');
          channel.appendLine('This is a sample output!');
          // eslint-disable-next-line max-len
          channel.appendLine('This is a sample output222! This is a sample output222!This is a sample output222! This is a sample output222! This is a sample output222! This is a sample output222! This is a sample output222!This is a sample output222!This is a sample output222!');
          channel.show();
      }
  });

Additional Information

  • Operating System: Windows 11
  • Theia Version: master
@msujew msujew added help wanted issues meant to be picked up, require help output issues related to the output labels Apr 11, 2024
@Aryakoste
Copy link

Hello @msujew. I would like to work on this issue.

@msujew
Copy link
Member

msujew commented Apr 11, 2024

@Aryakoste great, go ahead, no assignment necessary :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted issues meant to be picked up, require help output issues related to the output
Projects
None yet
Development

No branches or pull requests

3 participants